Skip to content

Commit

Permalink
fix(useNotificationsDashboardStore): use correct query param
Browse files Browse the repository at this point in the history
- use `networks` instead of `network` parameter

See: BEDS-605
  • Loading branch information
LuccaBitfly committed Oct 17, 2024
1 parent b36edd8 commit 5c9b50e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function useNotificationsDashboardStore(networkId: globalThis.Ref<ChainID
try {
const result = await fetch<InternalGetUserNotificationDashboardsResponse>(
API_PATH.NOTIFICATIONS_DASHBOARDS,
{ query: { network: networkId.value } },
{ query: { networks: networkId.value } },
undefined,
q,
)
Expand Down

0 comments on commit 5c9b50e

Please sign in to comment.