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
2 changes: 1 addition & 1 deletion src/core/services/LoggerService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class LoggerService implements ILogger {
this.isProduction = config.environment === 'production'
this.apiBaseUrl = config.apiBaseUrl
// Vite envs are statically replaced at build time. The endpoint
// `/client-logs` does not yet exist on the backend (TODO Team A);
// `/client-logs` does not yet exist on the backend (TODO(#240) Team A);
// until it ships, default the flag to false so we ship a safe no-op
// and don't 404-spam the API. Operator can flip
// `VITE_CLIENT_LOG_SINK_ENABLED=true` once the endpoint lands.
Expand Down
2 changes: 1 addition & 1 deletion src/pages/AuthMethodsTestingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default function AuthMethodsTestingPage() {
{t('authMethodsTesting.pageSubtitle')}
</Typography>

{/* TODO: difficulty + platform filters (post-MVP). */}
{/* TODO(#241): difficulty + platform filters (post-MVP). */}

<Grid container spacing={2}>
{methods.map((method) => (
Expand Down
Loading