diff --git a/public/notFound.svg b/public/notFound.svg new file mode 100644 index 00000000..f0c56968 --- /dev/null +++ b/public/notFound.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/SpinnerImage.tsx b/src/components/SpinnerImage.tsx index ed7e0a95..05d66a56 100644 --- a/src/components/SpinnerImage.tsx +++ b/src/components/SpinnerImage.tsx @@ -36,7 +36,8 @@ export default function SpinnerImage(props: IProps) { }; img.onerror = () => { - setImagsrc('Not Found'); + // Setting to an actual image so CSS styling works consistently + setImagsrc('/notFound.svg'); }; return () => {