This commit is contained in:
Manav Rathi 2024-05-25 16:34:10 +05:30
parent 76f7215269
commit d101208baa
No known key found for this signature in database

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("");