🧹 fix(ci): avoid void|Promise union for refetch

This commit is contained in:
web-ppanel
2026-01-27 18:11:32 +00:00
parent 7e1d5746d4
commit 6dd743bbf4
4 changed files with 4 additions and 3 deletions
@@ -34,7 +34,7 @@ export function NotifySettingsForm({
refetch,
}: {
user: API.User;
refetch: () => void | Promise<unknown>;
refetch: () => Promise<unknown>;
}) {
const { t } = useTranslation("user");