Fix admin page flashing

This commit is contained in:
gpt-engineer-app[bot]
2025-10-09 17:14:45 +00:00
parent ff7c90e62d
commit 356cf2b54b
4 changed files with 69 additions and 36 deletions

View File

@@ -21,7 +21,7 @@ export default function AdminModeration() {
const refreshMode = getAdminPanelRefreshMode();
const pollInterval = getAdminPanelPollInterval();
const { refresh: refreshStats, lastUpdated } = useModerationStats({
const { lastUpdated } = useModerationStats({
enabled: !!user && !authLoading && !roleLoading && isModerator(),
pollingEnabled: refreshMode === 'auto',
pollingInterval: pollInterval,
@@ -29,8 +29,7 @@ export default function AdminModeration() {
const handleRefresh = useCallback(() => {
moderationQueueRef.current?.refresh();
refreshStats();
}, [refreshStats]);
}, []);
useEffect(() => {
if (!authLoading && !roleLoading) {