Skip to content

Commit ed73924

Browse files
committed
remove var
1 parent c4a0b65 commit ed73924

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

web_src/js/features/notification.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,7 @@ async function updateNotificationTable() {
151151
const params = new URLSearchParams(window.location.search);
152152
params.set('div-only', String(true));
153153
params.set('sequence-number', String(++notificationSequenceNumber));
154-
const url = `${appSubUrl}/notifications?${params.toString()}`;
155-
const response = await GET(url);
154+
const response = await GET(`${appSubUrl}/notifications?${params.toString()}`);
156155

157156
if (!response.ok) {
158157
throw new Error('Failed to fetch notification table');

0 commit comments

Comments
 (0)