瀏覽代碼

revert wrong biome error fix

Futa Arai 5 月之前
父節點
當前提交
da7ece9e41
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      apps/app/src/client/components/Sidebar/Custom/CustomSidebarNotFound.tsx

+ 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>
   );