Fix: issue where backend is being called twice
Build image / build (push) Successful in 2m14s Details

This commit is contained in:
Alie 2024-09-06 23:01:29 +02:00
parent c48aad6cba
commit 6745abc9da
2 changed files with 22 additions and 20 deletions

View File

@ -1,4 +1,4 @@
FROM oven/bun:1 as install FROM oven/bun:1 AS install
RUN mkdir -p /temp/prod RUN mkdir -p /temp/prod
COPY package.json bun.lockb /temp/prod/ COPY package.json bun.lockb /temp/prod/
RUN cd /temp/prod && bun install --frozen-lockfile RUN cd /temp/prod && bun install --frozen-lockfile

View File

@ -52,6 +52,7 @@ export default function ImageModerator({
} }
const getNewImage = () => { const getNewImage = () => {
if (isLoading) {
setImageData({ url: "", tags: [] }); setImageData({ url: "", tags: [] });
fetch(`${middlewareUrl}/image`, { fetch(`${middlewareUrl}/image`, {
method: "GET", method: "GET",
@ -72,6 +73,7 @@ export default function ImageModerator({
.finally(() => { .finally(() => {
setIsLoading(false); setIsLoading(false);
}); });
}
}; };
useEffect(getNewImage, [isLoading]); useEffect(getNewImage, [isLoading]);