Bluesky app fork with some witchin' additions 💫

fix: alt text input (& update default model)

xan.lol 65177d00 261cb80d

verified
+2 -2
+1 -1
src/lib/constants.ts
··· 58 58 // Recommended is 100 per: https://www.w3.org/WAI/GL/WCAG20/tests/test3.html 59 59 // but increasing limit per user feedback 60 60 export const MAX_ALT_TEXT = 2000 61 - export const DEFAULT_ALT_TEXT_AI_MODEL = 'google/gemini-2.5-flash-lite' 61 + export const DEFAULT_ALT_TEXT_AI_MODEL = 'google/gemma-3-27b-it:free' 62 62 63 63 export const MAX_REPORT_REASON_GRAPHEME_LENGTH = 2000 64 64
+1 -1
src/view/com/composer/photos/ImageAltTextDialog.tsx
··· 197 197 onChangeText={text => { 198 198 setAltText(text) 199 199 }} 200 - value={altText} 200 + defaultValue={altText} 201 201 multiline 202 202 numberOfLines={3} 203 203 autoFocus