Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dashboard/src/components/ActivityFeed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export function ActivityFeed() {

// Clear stale activity and re-fetch from page 1 whenever the connected
// wallet address changes (switch or disconnect). This is the fix for issue #175.
useWalletAccountSync((_nextAddress) => {
useWalletAccountSync(() => {
setEvents([]);
setLiveEvents([]);
setTotal(0);
Expand Down
2 changes: 1 addition & 1 deletion dashboard/src/pages/EventExplorerPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export function EventExplorerPage() {

// Clear stale events and re-fetch whenever the connected wallet address
// changes (switch or disconnect). This is the fix for issue #175.
useWalletAccountSync((_nextAddress) => {
useWalletAccountSync(() => {
setEvents([]);
setError(null);
setPage(1);
Expand Down