diff options
author | Hailey <me@haileyok.com> | 2024-08-29 09:40:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-29 09:40:17 -0700 |
commit | 69053b1b0add68cc04ce7bc336ed65b2514e207b (patch) | |
tree | c78ab0cdf1e53a57a1d8043053899dc7c3b65939 /src | |
parent | e33b88ed7df4eeb6356e50e7d8494b24b31973d0 (diff) | |
download | voidsky-69053b1b0add68cc04ce7bc336ed65b2514e207b.tar.zst |
[Video] Remove old env var (#5018)
Diffstat (limited to 'src')
-rw-r--r-- | src/state/queries/video/util.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/queries/video/util.ts b/src/state/queries/video/util.ts index 9224c776d..db58b60c1 100644 --- a/src/state/queries/video/util.ts +++ b/src/state/queries/video/util.ts @@ -1,7 +1,7 @@ import {useMemo} from 'react' import {AtpAgent} from '@atproto/api' -const UPLOAD_ENDPOINT = process.env.EXPO_PUBLIC_VIDEO_ROOT_ENDPOINT ?? '' +const UPLOAD_ENDPOINT = 'https://video.bsky.app/' export const createVideoEndpointUrl = ( route: string, |