fix: remove unused error variable in cache.ts

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Ajax Davis 2025-12-29 21:56:48 +10:00
parent 7e6c0194c6
commit 5200f271f9

View file

@ -43,7 +43,7 @@ export async function getCachedImage(path: string): Promise<string | null> {
}
return blob.url;
} catch (error) {
} catch {
// Blob doesn't exist or error accessing it
return null;
}