Compare commits

...

2 Commits

Author SHA1 Message Date
f2d6e6d320 add more missing semicolons 2025-09-14 02:50:43 +02:00
2094c7734d added semicolon 2025-09-14 02:44:34 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -67,7 +67,7 @@ export async function getExternalEmotes() {
await redis.expire('chatwidget:emotes', 60 * 15); await redis.expire('chatwidget:emotes', 60 * 15);
return Response.json(emotes); return Response.json(emotes);
} };
import { HelixChatBadgeSet } from "@twurple/api"; import { HelixChatBadgeSet } from "@twurple/api";

View File

@@ -1,4 +1,4 @@
const popover = document.createElement('div') const popover = document.createElement('div');
Object.assign(popover.style, { Object.assign(popover.style, {
position: 'fixed', position: 'fixed',
top: '20px', top: '20px',
@@ -10,7 +10,7 @@ Object.assign(popover.style, {
fontSize: '9vmin', fontSize: '9vmin',
zIndex: 9999 zIndex: 9999
}); });
popover.textContent = 'Loading...' popover.textContent = 'Loading...';
document.body.appendChild(popover); document.body.appendChild(popover);
const [badges, emotes] = await Promise.all([ const [badges, emotes] = await Promise.all([