This commit is contained in:
Manav Rathi
2024-05-25 16:34:10 +05:30
parent 76f7215269
commit d101208baa

View File

@@ -23,7 +23,7 @@ import { getAuthCodes } from "services/remote";
const AuthenticatorCodesPage = () => {
const appContext = useContext(AppContext);
const router = useRouter();
const [codes, setCodes] = useState([]);
const [codes, setCodes] = useState<Code[]>([]);
const [hasFetched, setHasFetched] = useState(false);
const [searchTerm, setSearchTerm] = useState("");