Skip to content

Commit

Permalink
Silly me vol 3
Browse files Browse the repository at this point in the history
  • Loading branch information
itzCozi committed Mar 27, 2024
1 parent 52135ae commit e425709
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/setup/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { ReactNode, useEffect, useState } from "react";
import { useIsMobile } from "@/hooks/useIsMobile";
import { useBannerSize, useBannerStore } from "@/stores/banner";
import { ExtensionBanner } from "@/stores/banner/BannerLocation";
import { ExtensionStatus, getExtensionState } from "@/utils/onboarding";
import { getExtensionState } from "@/utils/extension";
import type { ExtensionStatus } from "@/utils/extension";

export function Layout(props: { children: ReactNode }) {
const bannerSize = useBannerSize();
Expand Down
2 changes: 1 addition & 1 deletion src/stores/banner/BannerLocation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useLocation, useNavigate } from "react-router-dom";

import { Icon, Icons } from "@/components/Icon";
import { useBannerStore, useRegisterBanner } from "@/stores/banner";
import type { ExtensionStatus } from "@/utils/onboarding";
import type { ExtensionStatus } from "@/utils/extension";

export function Banner(props: {
children: React.ReactNode;
Expand Down
1 change: 0 additions & 1 deletion src/utils/setup/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -182,4 +182,3 @@ function App() {
</Layout>
);
}

0 comments on commit e425709

Please sign in to comment.