Yuki Takei 1 год назад
Родитель
Сommit
f8994505a5
1 измененных файлов с 0 добавлено и 10 удалено
  1. 0 10
      apps/app/src/stores/xss.ts

+ 0 - 10
apps/app/src/stores/xss.ts

@@ -1,10 +0,0 @@
-
-import type { SWRResponse } from 'swr';
-
-import type Xss from '~/services/general-xss-filter';
-
-import { useStaticSWR } from './use-static-swr';
-
-export const useXss = (initialData?: Xss): SWRResponse<Xss, Error> => {
-  return useStaticSWR<Xss, Error>('xss', initialData);
-};