Skip to content

Commit 99cabb5

Browse files
committed
lint
1 parent a03c4b8 commit 99cabb5

File tree

5 files changed

+14
-15
lines changed

5 files changed

+14
-15
lines changed

apps/dashboard/src/@3rdweb-sdk/react/hooks/useApi.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -259,17 +259,17 @@ export interface BillingCredit {
259259

260260
interface UseAccountInput {
261261
refetchInterval?:
262-
| number
263-
| false
264-
| ((
265-
query: Query<
266-
Account,
267-
Error,
268-
Account,
269-
readonly ["account", string, "me"]
270-
>,
271-
) => number | false | undefined)
272-
| undefined;
262+
| number
263+
| false
264+
| ((
265+
query: Query<
266+
Account,
267+
Error,
268+
Account,
269+
readonly ["account", string, "me"]
270+
>,
271+
) => number | false | undefined)
272+
| undefined;
273273
}
274274

275275
export function useAccount({ refetchInterval }: UseAccountInput = {}) {

apps/dashboard/src/app/(dashboard)/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { AppFooter } from "@/components/blocks/app-footer";
2+
import { UnlimitedWalletsBanner } from "components/notices/AnnouncementBanner";
23
import { ErrorProvider } from "../../contexts/error-handler";
34
import { DashboardHeader } from "../components/Header/DashboardHeader";
4-
import { UnlimitedWalletsBanner } from "components/notices/AnnouncementBanner";
55

66
export default function DashboardLayout(props: { children: React.ReactNode }) {
77
return (

apps/dashboard/src/app/account/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import { getTeams } from "@/api/team";
33
import { DashboardTypeCookieSetter } from "@/components/DashboardTypeCookieSetter";
44
import { SidebarLayout } from "@/components/blocks/SidebarLayout";
55
import { AppFooter } from "@/components/blocks/app-footer";
6+
import { UnlimitedWalletsBanner } from "components/notices/AnnouncementBanner";
67
import type React from "react";
78
import { TWAutoConnect } from "../components/autoconnect";
89
import { AccountHeader } from "./components/AccountHeader";
9-
import { UnlimitedWalletsBanner } from "components/notices/AnnouncementBanner";
1010

1111
export default async function AccountLayout(props: {
1212
children: React.ReactNode;

apps/dashboard/src/app/layout.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import PlausibleProvider from "next-plausible";
77
import dynamic from "next/dynamic";
88
import { Inter } from "next/font/google";
99
import NextTopLoader from "nextjs-toploader";
10-
import { UnlimitedWalletsBanner } from "../components/notices/AnnouncementBanner";
1110
import { PostHogProvider } from "./components/root-providers";
1211
import { AppRouterProviders } from "./providers";
1312

apps/dashboard/src/app/team/[team_slug]/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { DashboardTypeCookieSetter } from "@/components/DashboardTypeCookieSetter";
22
import { AppFooter } from "@/components/blocks/app-footer";
3-
import { TWAutoConnect } from "../../components/autoconnect";
43
import { UnlimitedWalletsBanner } from "components/notices/AnnouncementBanner";
4+
import { TWAutoConnect } from "../../components/autoconnect";
55

66
export default function RootTeamLayout(props: {
77
children: React.ReactNode;

0 commit comments

Comments
 (0)