diff options
author | Ollie Hsieh <renahlee@outlook.com> | 2023-04-24 10:44:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-24 12:44:42 -0500 |
commit | df8059bf9a2b5de994b6eb1b101e875ff0d19238 (patch) | |
tree | 7f6794a7eede408a8294756f30f0a64aecf8c360 /src/lib/constants.ts | |
parent | 36eca53b874cfa2882a41d79a865967f24b56ec2 (diff) | |
download | voidsky-df8059bf9a2b5de994b6eb1b101e875ff0d19238.tar.zst |
Increase alt text limit to 1000 (#521)
Diffstat (limited to 'src/lib/constants.ts')
-rw-r--r-- | src/lib/constants.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/constants.ts b/src/lib/constants.ts index 12bdc5543..07d6e133b 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -5,8 +5,8 @@ export const MAX_DISPLAY_NAME = 64 export const MAX_DESCRIPTION = 256 // Recommended is 100 per: https://www.w3.org/WAI/GL/WCAG20/tests/test3.html -// but adding buffer room to account for languages like German -export const MAX_ALT_TEXT = 120 +// but increasing limit per user feedback +export const MAX_ALT_TEXT = 1000 export const PROD_TEAM_HANDLES = [ 'jay.bsky.social', |