From 9ec48aa0f63dd7fb1e5a1a7e2e1cb0769cf5136f Mon Sep 17 00:00:00 2001 From: mattyatea Date: Mon, 15 Jan 2024 23:28:11 +0900 Subject: [PATCH] Feat: emoji picker profile --- packages/frontend/src/ui/_common_/common.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/frontend/src/ui/_common_/common.ts b/packages/frontend/src/ui/_common_/common.ts index 5251ef5787..e3574cfa59 100644 --- a/packages/frontend/src/ui/_common_/common.ts +++ b/packages/frontend/src/ui/_common_/common.ts @@ -12,7 +12,7 @@ import { i18n } from '@/i18n.js'; import { $i } from '@/account.js'; function toolsMenuItems(): MenuItem[] { - return[{ + return [{ type: 'link', to: '/scratchpad', text: i18n.ts.scratchpad, @@ -27,6 +27,11 @@ function toolsMenuItems(): MenuItem[] { to: '/clicker', text: '●👈', icon: 'ti ti-cookie', + }, { + type: 'link', + to: '/bubble-game', + text: i18n.ts.bubbleGame, + icon: 'ti ti-apple', }, ($i && ($i.isAdmin || $i.policies.canManageCustomEmojis)) ? { type: 'link', to: '/custom-emojis-manager',