Fix: issue where backend is being called twice
Build image / build (push) Successful in 2m14s
Details
Build image / build (push) Successful in 2m14s
Details
This commit is contained in:
parent
c48aad6cba
commit
6745abc9da
|
@ -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
|
||||||
|
|
|
@ -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]);
|
||||||
|
|
Loading…
Reference in New Issue