kaori 4 ani în urmă
părinte
comite
8981905a8a
1 a modificat fișierele cu 0 adăugiri și 1 ștergeri
  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),