feat: update ui for android

This commit is contained in:
2024-11-15 09:39:35 +00:00
parent d03c11fdb1
commit f2c0ab0945
21 changed files with 1006 additions and 801 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import { useCallback, useMemo, useRef } from "react";
import { useCallback, useRef } from "react";
export const useDebounceCallback = <T extends (...args: any[]) => any>(
callback: T,
@@ -24,5 +24,5 @@ export const useDebounceCallback = <T extends (...args: any[]) => any>(
[delay, clear]
);
return [fn, clear] as const;
return fn;
};