aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/services/MomentService.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services/MomentService.ts b/src/services/MomentService.ts
index 87bdfa40..60e6be3f 100644
--- a/src/services/MomentService.ts
+++ b/src/services/MomentService.ts
@@ -220,7 +220,7 @@ export const handlePresignedURL = async (momentCategory: string) => {
try {
// TODO: just a random filename for video poc, we should not need to once complete
const randHash = Math.random().toString(36).substring(7);
- const filename = `[pc_${randHash}].mov`;
+ const filename = `pc_${randHash}.mov`;
const token = await AsyncStorage.getItem('token');
const response = await fetch(PRESIGNED_URL_ENDPOINT, {
method: 'POST',