We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 18d819f + f96f008 commit 17dc759Copy full SHA for 17dc759
backend/Dockerfile
@@ -1,5 +1,7 @@
1
FROM node:18-alpine
2
3
+RUN apk add openssl
4
+
5
RUN npm install -g typescript
6
7
COPY package.json ./
frontend/src/pages/Room/joan6.tsx
@@ -240,6 +240,15 @@ export const Joan6 = () => {
240
}, 1000);
241
return () => clearInterval(interval);
242
}, [update]);
243
+ useEffect(() => {
244
+ const interval = setInterval(
245
+ () => {
246
+ window.location.reload();
247
+ },
248
+ 1000 * 60 * 60 * 24,
249
+ );
250
+ return () => clearInterval(interval);
251
+ });
252
253
return (
254
<Grid
0 commit comments