Skip to content

Commit

Permalink
fix: biomeによる修正
Browse files Browse the repository at this point in the history
  • Loading branch information
shun-shobon committed Oct 19, 2024
1 parent b29efb5 commit a7142c0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/components/BottomNav.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Meta, StoryObj } from "@storybook/react";

import { BottomNav } from "./BottomNav";
import { createRemixStub } from "@remix-run/testing";
import { BottomNav } from "./BottomNav";

const meta: Meta<typeof BottomNav> = {
title: "Components/BottomNav",
Expand Down
6 changes: 3 additions & 3 deletions app/components/BottomNav.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { useId, type ReactNode } from "react";
import * as NavigationMenu from "@radix-ui/react-navigation-menu";
import { Link } from "@remix-run/react";
import { cva } from "class-variance-authority";
import { useTheme } from "./Theme";
import { type ReactNode, useId } from "react";
import { cn } from "~/libs/utils";
import { Link } from "@remix-run/react";
import { useTheme } from "./Theme";

const LINKS = [
{
Expand Down
2 changes: 1 addition & 1 deletion app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import {
import { cva } from "class-variance-authority";
import { Suspense } from "react";
import { Background } from "./components/Background";
import { BottomNav } from "./components/BottomNav";
import { Loading } from "./components/Loading";
import { ThemeProvider } from "./components/Theme";
import { BottomNav } from "./components/BottomNav";
import { useMyProfile } from "./features/profile/useMyProfile";
import { cn } from "./libs/utils";

Expand Down

0 comments on commit a7142c0

Please sign in to comment.