refactor: rename Tool.alpha to Tool.experimental

This commit is contained in:
Siddharth Kumar Sah
2026-03-26 01:10:51 +08:00
parent ab370a74fe
commit 585d66f0c9
178 changed files with 5637 additions and 4082 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import { useState, useEffect } from "react";
import { useEffect, useState } from "react";
interface AuthState {
loading: boolean;
@@ -15,7 +15,7 @@ export function useAuth(): AuthState {
useEffect(() => {
checkAuth();
}, []);
}, [checkAuth]);
async function checkAuth() {
try {