diff --git a/src/containers/BoardSettings.tsx b/src/containers/BoardSettings.tsx index e72dd85..61eea47 100644 --- a/src/containers/BoardSettings.tsx +++ b/src/containers/BoardSettings.tsx @@ -118,25 +118,6 @@ export const BoardSettings = () => {
Добавить участников
- {/*На будущее - приглашение по ссылке*/ - /* - - */} {activeBoard.board.myInviteLinkUuid ? (

Ссылка-приглашение

diff --git a/sw.js b/sw.js index 05018ad..b321d6e 100644 --- a/sw.js +++ b/sw.js @@ -4,10 +4,10 @@ self.addEventListener('install', event => { })); }); -// self.addEventListener('fetch', event => { -// event.respondWith( -// fetch(event.request).catch(() => { -// return caches.match('/static/offline.html'); -// }) -// ); -// }); +self.addEventListener('fetch', event => { + event.respondWith( + fetch(event.request).catch(() => { + return caches.match('/static/sw/offline.html'); + }) + ); +});