Álvaro Valenzuela Valdes commited on
Commit
b61d95b
·
1 Parent(s): a4c7d51

fix: Add missing useState import in Sidebar

Browse files
Files changed (1) hide show
  1. frontend/components/Sidebar.tsx +1 -1
frontend/components/Sidebar.tsx CHANGED
@@ -1,7 +1,7 @@
1
  "use client";
2
  import { translations, Language } from "../lib/translations";
3
 
4
- import type { Dispatch, SetStateAction } from "react";
5
 
6
  type SidebarTab =
7
  | "Dashboard"
 
1
  "use client";
2
  import { translations, Language } from "../lib/translations";
3
 
4
+ import { useState, type Dispatch, type SetStateAction } from "react";
5
 
6
  type SidebarTab =
7
  | "Dashboard"