chore: cleaning up code to allow all platforms to co-exist

This commit is contained in:
2025-05-03 12:43:47 +01:00
parent 372a891f97
commit 875d1d778c
4 changed files with 27 additions and 52 deletions

View File

@@ -38,19 +38,4 @@ export const ImageViewer: Component<ImageViewerProps> = (props) => {
});
return null;
// return (
// <div class="fixed inset-0">
// {latestImage() && (
// <div class="mt-4">
// <h3>Latest Processed Image:</h3>
// <img
// src={latestImage() || undefined}
// alt="Latest processed"
// class="max-w-md"
// />
// </div>
// )}
// </div>
// );
};