We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4a0b65 commit ed73924Copy full SHA for ed73924
web_src/js/features/notification.ts
@@ -151,8 +151,7 @@ async function updateNotificationTable() {
151
const params = new URLSearchParams(window.location.search);
152
params.set('div-only', String(true));
153
params.set('sequence-number', String(++notificationSequenceNumber));
154
- const url = `${appSubUrl}/notifications?${params.toString()}`;
155
- const response = await GET(url);
+ const response = await GET(`${appSubUrl}/notifications?${params.toString()}`);
156
157
if (!response.ok) {
158
throw new Error('Failed to fetch notification table');
0 commit comments