Skip to content

Commit ef91302

Browse files
committed
fix: 산책 상태 const 변경
1 parent 2c5d40f commit ef91302

File tree

5 files changed

+42
-49
lines changed

5 files changed

+42
-49
lines changed

dev-dist/sw.js

+36-45
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,23 @@ if (!self.define) {
2020
let nextDefineUri;
2121

2222
const singleRequire = (uri, parentUri) => {
23-
uri = new URL(uri + '.js', parentUri).href;
24-
return (
25-
registry[uri] ||
26-
new Promise((resolve) => {
27-
if ('document' in self) {
28-
const script = document.createElement('script');
29-
script.src = uri;
30-
script.onload = resolve;
31-
document.head.appendChild(script);
32-
} else {
33-
nextDefineUri = uri;
34-
importScripts(uri);
35-
resolve();
36-
}
37-
}).then(() => {
23+
uri = new URL(uri + ".js", parentUri).href;
24+
return registry[uri] || (
25+
26+
new Promise(resolve => {
27+
if ("document" in self) {
28+
const script = document.createElement("script");
29+
script.src = uri;
30+
script.onload = resolve;
31+
document.head.appendChild(script);
32+
} else {
33+
nextDefineUri = uri;
34+
importScripts(uri);
35+
resolve();
36+
}
37+
})
38+
39+
.then(() => {
3840
let promise = registry[uri];
3941
if (!promise) {
4042
throw new Error(`Module ${uri} didn’t register its module`);
@@ -45,31 +47,27 @@ if (!self.define) {
4547
};
4648

4749
self.define = (depsNames, factory) => {
48-
const uri =
49-
nextDefineUri ||
50-
('document' in self ? document.currentScript.src : '') ||
51-
location.href;
50+
const uri = nextDefineUri || ("document" in self ? document.currentScript.src : "") || location.href;
5251
if (registry[uri]) {
5352
// Module is already loading or loaded.
5453
return;
5554
}
5655
let exports = {};
57-
const require = (depUri) => singleRequire(depUri, uri);
56+
const require = depUri => singleRequire(depUri, uri);
5857
const specialDeps = {
5958
module: { uri },
6059
exports,
61-
require,
60+
require
6261
};
63-
registry[uri] = Promise.all(
64-
depsNames.map((depName) => specialDeps[depName] || require(depName)),
65-
).then((deps) => {
62+
registry[uri] = Promise.all(depsNames.map(
63+
depName => specialDeps[depName] || require(depName)
64+
)).then(deps => {
6665
factory(...deps);
6766
return exports;
6867
});
6968
};
7069
}
71-
define(['./workbox-5357ef54'], function (workbox) {
72-
'use strict';
70+
define(['./workbox-5357ef54'], (function (workbox) { 'use strict';
7371

7472
self.skipWaiting();
7573
workbox.clientsClaim();
@@ -79,23 +77,16 @@ define(['./workbox-5357ef54'], function (workbox) {
7977
* requests for URLs in the manifest.
8078
* See https://goo.gl/S9QRab
8179
*/
82-
workbox.precacheAndRoute(
83-
[
84-
{
85-
url: 'registerSW.js',
86-
revision: '3ca0b8505b4bec776b69afdba2768812',
87-
},
88-
{
89-
url: 'index.html',
90-
revision: '0.5v9mpiqo8c8',
91-
},
92-
],
93-
{},
94-
);
80+
workbox.precacheAndRoute([{
81+
"url": "registerSW.js",
82+
"revision": "3ca0b8505b4bec776b69afdba2768812"
83+
}, {
84+
"url": "index.html",
85+
"revision": "0.1luf9u5i3ag"
86+
}], {});
9587
workbox.cleanupOutdatedCaches();
96-
workbox.registerRoute(
97-
new workbox.NavigationRoute(workbox.createHandlerBoundToURL('index.html'), {
98-
allowlist: [/^\/$/],
99-
}),
100-
);
101-
});
88+
workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), {
89+
allowlist: [/^\/$/]
90+
}));
91+
92+
}));

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<div id="root"></div>
2222
<script type="module" src="/src/main.tsx">
2323
if ('serviceWorker' in navigator) {
24-
navigator.serviceWorker.register('service-worker.js').then((reg) => console.log('Service worker registered.', reg));
24+
navigator.serviceWorker.register('service-worker.js').then();
2525
}
2626
</script>
2727
</body>

src/components/organisms/ChatList.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const ChatList = () => {
3535
});
3636
}, []);
3737
return (
38-
<>
38+
<div style={{ height: '100%' }}>
3939
{Chatlist ? (
4040
Chatlist.map((item: Chat) => (
4141
<ChatListItem key={item.chatRoomId} chat={item} />
@@ -45,7 +45,7 @@ const ChatList = () => {
4545
<Spinner />
4646
</>
4747
)}
48-
</>
48+
</div>
4949
);
5050
};
5151
export default ChatList;

src/components/organisms/CurrentWalkingMap.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ const CurrentWalkingMap = () => {
216216
return (
217217
<S.Container>
218218
<S.BackCursor>
219-
<BackBar to="/chatroom" />
219+
<BackBar to="/chatlist" />
220220
</S.BackCursor>
221221
<KakaoMap user={user} matchingId={matchingId} />
222222
<S.BottomBox>

src/styles/pages/ChatListTemplate.ts

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import styled from 'styled-components';
33
export const Container = styled.div`
44
background-color: white;
55
width: 100%;
6+
height: 100%;
7+
padding-tottom: 4rem;
68
/* height: 90vh; */
79
/* background-color: red; */
810
display: flex;

0 commit comments

Comments
 (0)