diff --git a/frontend/src/components/ui/sidebar/SidebarRail.vue b/frontend/src/components/ui/sidebar/SidebarRail.vue index 1045a55..a979efe 100644 --- a/frontend/src/components/ui/sidebar/SidebarRail.vue +++ b/frontend/src/components/ui/sidebar/SidebarRail.vue @@ -2,11 +2,13 @@ import type { HTMLAttributes } from "vue" import { cn } from "@/lib/utils" import { useSidebar } from "./utils" +import { useI18n } from "vue-i18n" const props = defineProps<{ class?: HTMLAttributes["class"] }>() +const { t } = useI18n() const { toggleSidebar } = useSidebar() @@ -14,16 +16,15 @@ const { toggleSidebar } = useSidebar()