Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ There are several authentication-related email templates which can be configured

### `auth.email.template.reauthentication`

**Default subject**: "{{ .Token }} is your verification code"
**Default subject**: "`{{ .Token }} is your verification code`"
**When sent**: When a user needs to re-authenticate for sensitive operations
**Purpose**: Ask users to verify their identity before a sensitive operation
**Content**: Contains a 6-digit OTP code for verification
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/guides/telemetry/client-side-tracing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Once trace context is flowing through, the `trace_id` appears in:
- **API Gateway logs** — every request to PostgREST, Auth, Storage, and Realtime
- **Edge Function logs** — invocations and any structured logs emitted from within the function

If you forward Supabase logs to a third-party backend via [Log Drains](/guides/telemetry/log-drains), you can join Supabase logs to your own client and server traces using the shared `trace_id`. This is especially useful for self-hosted setups where you already operate your own OpenTelemetry collector — Supabase logs become first-class citizens in your existing tracing UI.
If you forward Supabase logs to a third-party backend via [Log Drains](/docs/guides/telemetry/log-drains), you can join Supabase logs to your own client and server traces using the shared `trace_id`. This is especially useful for self-hosted setups where you already operate your own OpenTelemetry collector — Supabase logs become first-class citizens in your existing tracing UI.

## Using a vendor tracing SDK

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useParams } from 'common'
import { PropsWithChildren, ReactNode } from 'react'
import { cn } from 'ui'

import { INTEGRATIONS } from '../Landing/Integrations.constants'
import { IntegrationDefinition, INTEGRATIONS } from '../Landing/Integrations.constants'
import { BuiltBySection } from './BuildBySection'
import { MarkdownContent } from './MarkdownContent'
import { RequiredExtensionsSection } from './RequiredExtensionsSection'
Expand All @@ -23,7 +23,7 @@ export const OverviewTabSharedContent = ({
alert,
children,
}: PropsWithChildren<{
integration: any
integration: IntegrationDefinition
hideRequiredExtensionsSection?: boolean
actions?: ReactNode
alert?: ReactNode
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export const GitHubIntegrationConnectionForm = ({
workdir: data.supabaseDirectory,
supabase_changes_only: data.supabaseChangesOnly,
branch_limit: Number(data.branchLimit),
new_branch_per_pr: data.new_branch_per_pr,
new_branch_per_pr: data.new_branch_per_pr ?? false,
},
})

Expand Down Expand Up @@ -268,7 +268,7 @@ export const GitHubIntegrationConnectionForm = ({
workdir: data.supabaseDirectory,
supabase_changes_only: data.supabaseChangesOnly,
branch_limit: Number(data.branchLimit),
new_branch_per_pr: data.new_branch_per_pr,
new_branch_per_pr: data.new_branch_per_pr ?? false,
},
})

Expand Down
Loading