Skip to content

Commit 2205127

Browse files
fix(mobile): add a default value for sentry dsn in expo config
1 parent 9f0d01c commit 2205127

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/native/app.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const client = z.object({
1313
VERSION: z.string().default("1.0.0"),
1414
SLUG: z.string().default("myapp"),
1515

16-
SENTRY_DSN: zExtend(z.string().min(1, "SENTRY_DSN is required")),
16+
SENTRY_DSN: zExtend(z.string().min(1, "SENTRY_DSN is required").default("")),
1717
});
1818

1919
const buildTime = z.object({

0 commit comments

Comments
 (0)