kaori 4 лет назад
Родитель
Сommit
8981905a8a
1 измененных файлов с 0 добавлено и 1 удалено
  1. 0 1
      packages/app/src/stores/in-app-notification.ts

+ 0 - 1
packages/app/src/stores/in-app-notification.ts

@@ -10,7 +10,6 @@ export const useSWRxInAppNotifications = <Data, Error>(
   limit: number,
   page: number,
 ): SWRResponse<PaginateResult<IInAppNotification>, Error> => {
-  // const limitNum = limit;
   return useSWR(
     `/in-app-notification/list?limit=${limit}&page=${page}`,
     endpoint => apiv3Get(endpoint).then(response => response.data),