WizloAll Collections

Is there a "re-sync data" button?

Is there a "re-sync data" button?

Step 1: VERIFIED CORRECTION to the existing KB draft's blanket claim ("No re-sync button — reload the page if data looks stale"): a narrowly-scoped "Sync now" button does exist (app/(protected)/setup/integrations/google-calendar/page.tsx, handler handleSyncNow → useSyncGoogleCalendarNowMutation, title "Pull latest events from Google Calendar") and is directly reachable at this URL, confirmed live. It only pulls events from a connected Google Calendar account, so it's not a general data-refresh button.

Is there a "re-sync data" button? — Step 1: VERIFIED CORRECTION to the existing KB draft's blanket claim ("No re-sync button — reload the page if data looks stale"): a narrowly-scoped "Sync now" button does exist (app/(protected)/setup/integrations/google-calendar/page.tsx, handler handleSyncNow → useSyncGoogleCalendarNowMutation, title "Pull latest events from Google Calendar") and is directly reachable at this URL, confirmed live. It only pulls events from a connected Google Calendar account, so it's not a general data-refresh button.
Is there a "re-sync data" button? — Step 1: VERIFIED CORRECTION to the existing KB draft's blanket claim ("No re-sync button — reload the page if data looks stale"): a narrowly-scoped "Sync now" button does exist (app/(protected)/setup/integrations/google-calendar/page.tsx, handler handleSyncNow → useSyncGoogleCalendarNowMutation, title "Pull latest events from Google Calendar") and is directly reachable at this URL, confirmed live. It only pulls events from a connected Google Calendar account, so it's not a general data-refresh button.

Step 2: Confirmed in the same file's parent, setup/integrations/page.tsx: the tab list entry `{ id: "calendar", label: "Calendar", providerNetworkOnly: true }` is filtered out entirely for non-PN tenants (`if (t.providerNetworkOnly) return isProviderNetwork;`), so a clinic admin does not see a "Calendar" tab here either — there is no path to the Sync-now button from this account at all.

Is there a "re-sync data" button? — Step 2: Confirmed in the same file's parent, setup/integrations/page.tsx: the tab list entry `{ id: "calendar", label: "Calendar", providerNetworkOnly: true }` is filtered out entirely for non-PN tenants (`if (t.providerNetworkOnly) return isProviderNetwork;`), so a clinic admin does not see a "Calendar" tab here either — there is no path to the Sync-now button from this account at all.
Is there a "re-sync data" button? — Step 2: Confirmed in the same file's parent, setup/integrations/page.tsx: the tab list entry `{ id: "calendar", label: "Calendar", providerNetworkOnly: true }` is filtered out entirely for non-PN tenants (`if (t.providerNetworkOnly) return isProviderNetwork;`), so a clinic admin does not see a "Calendar" tab here either — there is no path to the Sync-now button from this account at all.

Step 3: Recommended corrected KB answer: "There is no general 're-sync' button for your clinical/business data — if a list looks stale, reload the page. The one exception is Setup → Integrations → Calendar (Provider-Network tenants only), which has a 'Sync now' button that pulls the latest events from a connected Google account only — it does not exist for Clinic-type tenants." For every other list/detail screen in the app (Patients, Orders, Staff, Reports, etc.), there is no equivalent button anywhere in source — those screens rely on automatic refetch-after-action (RTK Query) and a manual browser reload if something looks stale.

Is there a "re-sync data" button? · Wizlo Help