فهرست منبع

revert wrong biome error fix

Futa Arai 4 ماه پیش
والد
کامیت
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>
   );