diff --git a/apps/rowboat/components/common/compose-box-playground.tsx b/apps/rowboat/components/common/compose-box-playground.tsx index 39a30320..3cec9a3b 100644 --- a/apps/rowboat/components/common/compose-box-playground.tsx +++ b/apps/rowboat/components/common/compose-box-playground.tsx @@ -136,7 +136,7 @@ export function ComposeBoxPlayground({ setPendingImage({ url: imageUrl, previewSrc, mimeType: file.type, description: null }); } } - } catch (err) { + } catch (err: any) { // On local, S3 may be unconfigured. Fallback to legacy temp upload endpoint. if (err?.name === 'AbortError') throw err; usedFallback = true;