fix: unused var

This commit is contained in:
Nathnael
2026-07-06 13:58:52 +00:00
parent 46e5761405
commit 894474704b

View File

@@ -32,12 +32,7 @@ import {
User,
X,
} from "lucide-react";
import {
type CSSProperties,
Fragment,
type ReactNode,
useState,
} from "react";
import { type CSSProperties, Fragment, type ReactNode, useState } from "react";
import { PROFILE_TYPE_LABELS } from "@/constants/profileMode";
import NotificationBellContainer from "@/features/notifications/NotificationBellContainer";
@@ -159,7 +154,6 @@ export function AppLayout({
const borderColor = theme.colors["edr-border"][6];
const mutedColor = theme.colors["edr-muted"][6];
const textColor = theme.colors["edr-text"][6];
const accentColor = theme.colors["edr-accent"][6];
const primaryColor = theme.colors["edr-green"][5];
const primaryDarkColor = theme.colors["edr-green"][7];
@@ -469,7 +463,9 @@ export function AppLayout({
<Menu.Item
leftSection={<Plus size={15} />}
color="edr-green"
onClick={() => navigate("/bookings/new", { state: { fresh: true } })}
onClick={() =>
navigate("/bookings/new", { state: { fresh: true } })
}
>
New Booking
</Menu.Item>