Skip to content

Commit

Permalink
apply check
Browse files Browse the repository at this point in the history
  • Loading branch information
yo-iwamoto committed Aug 10, 2024
1 parent 70fd0ea commit 0733704
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/app/[locale]/_components/layout/layout-view.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { Container } from "@/components/container";
import { Link } from "@/lib/navigation";
import type { PropsWithChildren } from "react";
import { LocaleSwitcher } from "./locale-switcher";
import { UserIcon } from "lucide-react";
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu";
import { Link } from "@/lib/navigation";
import { UserIcon } from "lucide-react";
import type { PropsWithChildren } from "react";
import { LocaleSwitcher } from "./locale-switcher";

type Props = PropsWithChildren<{
locale: string;
Expand Down
2 changes: 1 addition & 1 deletion src/app/[locale]/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { TooltipProvider } from "@/components/ui/tooltip";
import { I18nClientProvider } from "@/i18n/client-provider";
import { initializeLocale } from "@/i18n/initialize-locale";
import { locales } from "@/i18n/locales/list";
Expand All @@ -6,7 +7,6 @@ import { getTranslations } from "next-intl/server";
import type { PropsWithChildren } from "react";
import { LayoutView } from "./_components/layout/layout-view";
import { RootClientProviders } from "./_components/layout/root-client-providers";
import { TooltipProvider } from "@/components/ui/tooltip";

export function generateStaticParams() {
return locales.map((locale) => ({ locale }));
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/dropdown-menu.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"use client";

import * as React from "react";
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
import { Check, ChevronRight, Circle } from "lucide-react";
import * as React from "react";

import { cn } from "@/lib/utils";

Expand Down

0 comments on commit 0733704

Please sign in to comment.