Skip to content

Commit 13bfa02

Browse files
nicomiguelinoclaude
andcommitted
chore(simple-message-app): remove theme setting and setupTheme call
- Remove theme from screenly.yml and screenly_qc.yml since it's a platform-level setting - Remove setupTheme() import and call from main.ts as it's not needed - Remove theme from e2e screenshot fixture - Remove theme row from README settings table Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 9b5b637 commit 13bfa02

File tree

5 files changed

+0
-18
lines changed

5 files changed

+0
-18
lines changed

edge-apps/simple-message-app/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ The app accepts the following settings via `screenly.yml`:
2828
| `override_locale` | Override the default locale using a [BCP&nbsp;47](https://developer.mozilla.org/en-US/docs/Web/Localization/Locale_identification_and_negotiation#locale_identifiers) locale tag (e.g., `en`, `en-GB`, `fr`, `fr-CA`, `de`) | optional | `en` |
2929
| `override_timezone` | Override the default timezone using an [IANA time zone identifier](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) (e.g., `Europe/London`, `America/New_York`). Defaults to the system timezone if left blank | optional | - |
3030
| `tag_manager_id` | Google Tag Manager container ID to enable tracking and analytics | optional | `GTM-P98SPZ9Z` |
31-
| `theme` | Visual theme for the application (`light` or `dark`) | required | `light` |
3231

3332
## Development
3433

edge-apps/simple-message-app/e2e/screenshots.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ const { screenlyJsContent } = createMockScreenlyForScreenshots(
1818
override_locale: 'en',
1919
override_timezone: 'America/New_York',
2020
tag_manager_id: 'GTM-P98SPZ9Z',
21-
theme: 'light',
2221
},
2322
)
2423

edge-apps/simple-message-app/screenly.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,3 @@ settings:
5757
help_text: |
5858
Enter your Google Tag Manager container ID to enable tracking and analytics.
5959
is_global: true
60-
theme:
61-
type: string
62-
default_value: light
63-
title: Theme
64-
optional: false
65-
help_text: |
66-
Select the visual theme for the application ('light' or 'dark').

edge-apps/simple-message-app/screenly_qc.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,3 @@ settings:
5757
help_text: |
5858
Enter your Google Tag Manager container ID to enable tracking and analytics.
5959
is_global: true
60-
theme:
61-
type: string
62-
default_value: light
63-
title: Theme
64-
optional: false
65-
help_text: |
66-
Select the visual theme for the application ('light' or 'dark').

edge-apps/simple-message-app/src/main.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import {
66
getSettingWithDefault,
77
getTimeZone,
88
setupErrorHandling,
9-
setupTheme,
109
signalReady,
1110
} from '@screenly/edge-apps'
1211

@@ -46,6 +45,5 @@ export default async function init() {
4645

4746
document.addEventListener('DOMContentLoaded', async () => {
4847
setupErrorHandling()
49-
setupTheme()
5048
await init()
5149
})

0 commit comments

Comments
 (0)