From f7b398e0781e2253004033016017bec7f9f24523 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Sat, 25 Feb 2023 14:58:11 +0800 Subject: [PATCH] Ugh need to be '+' instead of spaces --- src/components/shortcuts-settings.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/shortcuts-settings.jsx b/src/components/shortcuts-settings.jsx index 2c904355..53c31d7f 100644 --- a/src/components/shortcuts-settings.jsx +++ b/src/components/shortcuts-settings.jsx @@ -140,7 +140,7 @@ export const SHORTCUTS_META = { }, hashtag: { title: ({ hashtag }) => hashtag, - path: ({ hashtag }) => `/t/${hashtag}`, + path: ({ hashtag }) => `/t/${hashtag.split(/\s+/).join('+')}`, icon: 'hashtag', }, };