Cloud Accounts
- {getAccounts.error && Failed to load}
- {getAccounts.isLoading && Loading}
+ {getAccounts.error && (
+ Failed to load
+ )}
+ {getAccounts.isLoading && (
+ Loading
+ )}
{getAccounts.data && (
diff --git a/app/docs/layout.tsx b/app/docs/layout.tsx
index e3d89f490a..eaf63f3b99 100644
--- a/app/docs/layout.tsx
+++ b/app/docs/layout.tsx
@@ -1,7 +1,13 @@
-export default function DocsLayout({ children }: { children: React.ReactNode }) {
+export default function DocsLayout({
+ children,
+}: {
+ children: React.ReactNode;
+}) {
return (
- {children}
+
+ {children}
+
);
}
diff --git a/app/error.tsx b/app/error.tsx
index 388b7fcc7b..9ed5104e8a 100644
--- a/app/error.tsx
+++ b/app/error.tsx
@@ -2,7 +2,13 @@
import { useEffect } from "react";
-export default function Error({ error, reset }: { error: Error; reset: () => void }) {
+export default function Error({
+ error,
+ reset,
+}: {
+ error: Error;
+ reset: () => void;
+}) {
useEffect(() => {
// Log the error to an error reporting service
/* eslint-disable no-console */
diff --git a/app/layout.tsx b/app/layout.tsx
index 39517f2bf1..275ebe292b 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -1,9 +1,9 @@
import "@/styles/globals.css";
+import { Navbar } from "@nextui-org/react";
import clsx from "clsx";
import { Metadata, Viewport } from "next";
-import { Navbar } from "@/components/navbar";
import { fontSans } from "@/config/fonts";
import { siteConfig } from "@/config/site";
@@ -27,15 +27,26 @@ export const viewport: Viewport = {
],
};
-export default function RootLayout({ children }: { children: React.ReactNode }) {
+export default function RootLayout({
+ children,
+}: {
+ children: React.ReactNode;
+}) {
return (
-
+
- {children}
+
+ {children}
+
diff --git a/app/login/layout.tsx b/app/login/layout.tsx
index 561d6bcc49..d3a4a58ea4 100644
--- a/app/login/layout.tsx
+++ b/app/login/layout.tsx
@@ -1,7 +1,13 @@
-export default function LoginLayout({ children }: { children: React.ReactNode }) {
+export default function LoginLayout({
+ children,
+}: {
+ children: React.ReactNode;
+}) {
return (
- {children}
+
+ {children}
+
);
}
diff --git a/app/login/page.tsx b/app/login/page.tsx
index c348917daf..f07535d803 100644
--- a/app/login/page.tsx
+++ b/app/login/page.tsx
@@ -2,7 +2,15 @@
import { EyeIcon } from "@heroicons/react/24/solid";
import { EyeSlashIcon } from "@heroicons/react/24/solid";
-import { Button, Card, CardBody, CardFooter, CardHeader, Input, Link } from "@nextui-org/react";
+import {
+ Button,
+ Card,
+ CardBody,
+ CardFooter,
+ CardHeader,
+ Input,
+ Link,
+} from "@nextui-org/react";
import React from "react";
export default function LoginPage() {
@@ -18,13 +26,22 @@ export default function LoginPage() {
Login
-
+
+