Skip to content

Commit

Permalink
fix: image data is undefined (blib-la#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelass committed Feb 1, 2024
1 parent 25bacbc commit b5d3ee4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renderer/pages/[locale]/dataset.tsx
Expand Up @@ -147,7 +147,7 @@ export default function Page(_properties: InferGetStaticPropsType<typeof getStat

const { data: captionRunningData } = useSWR(CAPTION_RUNNING);

const { data: imagesData } = useSWR("", () => {
const { data: imagesData } = useSWR("imagesData", () => {
if (dataset) {
return window.ipc.getExistingProject(dataset);
}
Expand Down

0 comments on commit b5d3ee4

Please sign in to comment.