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 packages/shared-schema/AppSettings.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"defaultPerspective": {
"type": "string",
"enum": ["scholarly", "modernPremium", "consumerFriendly"],
"default": "scholarly",
"default": "modernPremium",
"description": "Default color palette"
Copy link

Copilot AI Mar 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In this schema, the property name defaultPerspective appears to represent the UI color palette (per the description). Consider renaming the schema property to something palette-related (e.g., palette/defaultPalette) or adjust the description to explicitly explain why it's called “perspective”, to avoid confusion for schema consumers.

Suggested change
"description": "Default color palette"
"description": "Default visual perspective (UI color palette/theme)"

Copilot uses AI. Check for mistakes.
},
"maxSources": {
Expand Down
2 changes: 1 addition & 1 deletion pwa/src/types/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export interface AppSettings {
export const DEFAULT_SETTINGS: AppSettings = {
apiBaseURL: (import.meta.env.VITE_API_BASE_URL as string | undefined) || 'https://backwords-api.netlify.app/.netlify/functions',
colorScheme: 'system',
palette: 'scholarly',
palette: 'modernPremium',
maxSources: 4,
mockMode: false,
preferredModel: 'grok-3-mini-fast',
Expand Down
Loading