Compare commits

...

2 Commits

Author SHA1 Message Date
53ccfe1d4f Fix typo in error message 2026-03-19 22:57:54 -04:00
a5a2f8324e Update modal config 2026-03-19 22:57:46 -04:00
2 changed files with 3 additions and 1 deletions

View File

@@ -30,6 +30,8 @@ export default function ModalHeader({
<Button
className="absolute top-1 right-1 cursor-pointer"
onClick={onClose}
size="sm"
variant="icon"
>
<BsXLg
size={20}

View File

@@ -70,7 +70,7 @@ export function useToken(){
const context = useContext(TokenContext);
if(!context){
throw new Error("useTOken must be called inside a TokenProvider");
throw new Error("useToken must be called inside a TokenProvider");
}
return context;