Skip to content

Commit bd298e4

Browse files
committed
Coderabbit nitpick fix
1 parent e9445c7 commit bd298e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/webapp/app/components/navigation/DashboardDialogs.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "../pri
2626
import { v3BillingPath } from "~/utils/pathBuilder";
2727
import { type SideMenuEnvironment, type SideMenuProject } from "./SideMenu";
2828

29-
function useCreateDashboard<T extends { slug: string }>({
29+
function useCreateDashboard({
3030
organization,
3131
project,
3232
environment,
3333
}: {
34-
organization: T;
34+
organization: { slug: string };
3535
project: { slug: string };
3636
environment: { slug: string };
3737
}) {

0 commit comments

Comments
 (0)