You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
subHeading="We couldn't find any matches for that keyword or filter. Try alternative terms or check for typos."
33
-
// TODO: update icon with raystack icon
34
-
icon={<InfoCircledIcon/>}
34
+
heading="No service account found"
35
+
subHeading="We couldn't find any matches for that keyword. Try alternative terms or check for typos."
36
+
icon={<CodeIcon/>}
35
37
/>
36
38
);
37
39
};
38
40
41
+
constZeroState=()=>{
42
+
return(
43
+
<divclassName={styles["zero-state-container"]}>
44
+
<EmptyState
45
+
variant="empty2"
46
+
icon={<CodeIcon/>}
47
+
heading="API"
48
+
subHeading="An API is a set of protocols that enables Aurora to interact with other applications. It defines request and response structures, allowing seamless data exchange and integration."
49
+
/>
50
+
</div>
51
+
);
52
+
};
53
+
39
54
constErrorState=()=>{
40
55
return(
41
56
<EmptyState
@@ -83,6 +98,7 @@ export function OrganizationApisView() {
0 commit comments