From 3414f962e27ccf0c23b35c204e58f1df1af829f8 Mon Sep 17 00:00:00 2001 From: Kalista Payne Date: Tue, 10 Feb 2026 17:13:02 -0600 Subject: [PATCH] fix(lint): string style and whitespace --- website/client/src/components/shops/seasonal/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/client/src/components/shops/seasonal/index.vue b/website/client/src/components/shops/seasonal/index.vue index b96d8ee823..7e517072ca 100644 --- a/website/client/src/components/shops/seasonal/index.vue +++ b/website/client/src/components/shops/seasonal/index.vue @@ -499,8 +499,8 @@ export default { await this.triggerGetWorldState(); this.currentEvent = _find(this.currentEventList, event => Boolean(event.season)); if (this.currentEvent.season === 'valentines') { - this.imageURLs.background = `url(/static/npc/spring/seasonal_shop_opened_background.png)`; - this.imageURLs.npc = `url(/static/npc/spring/seasonal_shop_opened_npc.png)`; + this.imageURLs.background = 'url(/static/npc/spring/seasonal_shop_opened_background.png)'; + this.imageURLs.npc = 'url(/static/npc/spring/seasonal_shop_opened_npc.png)'; } else { this.imageURLs.background = `url(/static/npc/${this.currentEvent.season}/seasonal_shop_opened_background.png)`; this.imageURLs.npc = `url(/static/npc/${this.currentEvent.season}/seasonal_shop_opened_npc.png)`;