From 03c8dbc09aecbb1cb87e2568d8532fa59452197e Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 29 May 2025 05:16:16 -0700 Subject: fix(feeds): Remove duplicate whitespace --- src/routes/feeds/activity-notifications/+server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/routes/feeds/activity-notifications/+server.ts b/src/routes/feeds/activity-notifications/+server.ts index b8675de9..37190255 100644 --- a/src/routes/feeds/activity-notifications/+server.ts +++ b/src/routes/feeds/activity-notifications/+server.ts @@ -24,7 +24,7 @@ const render = (posts: Notification[] = []) => ` notification.type !== undefined) .map((notification: Notification) => { - let title = `${notification.user.name} ${notification.context}`; + let title = `${notification.user.name}${notification.context}`; let link = `https://anilist.co/user/${notification.user.name}`; const prettyType = notification.type .toString() -- cgit v1.2.3