Browse Source

revert wrong biome error fix

Futa Arai 3 months ago
parent
commit
da7ece9e41

+ 4 - 1
apps/app/src/client/components/Sidebar/Custom/CustomSidebarNotFound.tsx

@@ -24,7 +24,10 @@ export const SidebarNotFound = (): JSX.Element => {
         onClick={clickCreateButtonHandler}
       >
         <span className="material-symbols-outlined">edit_note</span>
-        <span>{t('Create Sidebar Page')}</span>
+        <span
+          // biome-ignore lint/security/noDangerouslySetInnerHtml: ignore
+          dangerouslySetInnerHTML={{ __html: t('Create Sidebar Page') }}
+        ></span>
       </button>
     </div>
   );