diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ab4c586..fba36de 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -160,8 +160,9 @@ jobs:
id: cf
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
+ CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
run: |
- if [ -n "$CLOUDFLARE_API_TOKEN" ]; then
+ if [ -n "$CLOUDFLARE_API_TOKEN" ] && [ -n "$CLOUDFLARE_ACCOUNT_ID" ]; then
echo "configured=true" >> "$GITHUB_OUTPUT"
else
echo "configured=false" >> "$GITHUB_OUTPUT"
diff --git a/app/sentry-test/client-test.tsx b/app/admin/sentry-test/client-test.tsx
similarity index 86%
rename from app/sentry-test/client-test.tsx
rename to app/admin/sentry-test/client-test.tsx
index a1ff82c..a1db85d 100644
--- a/app/sentry-test/client-test.tsx
+++ b/app/admin/sentry-test/client-test.tsx
@@ -29,13 +29,9 @@ export function SentryClientTest() {
{eventId ? "Captured" : "Waiting"}
-
- Use this only in development and preview. Production returns not found.
-
+ Use this only in development and preview.
{eventId ? (
-
- {eventId}
-
+ {eventId}
) : null}