diff --git a/app/Filament/Pages/Settings/GeneralPage.php b/app/Filament/Pages/Settings/GeneralPage.php
index c6f72a427..599b42941 100644
--- a/app/Filament/Pages/Settings/GeneralPage.php
+++ b/app/Filament/Pages/Settings/GeneralPage.php
@@ -52,13 +52,13 @@ public function form(Form $form): Form
->required()
->columnSpan(['md' => 2]),
Forms\Components\Select::make('timezone')
- ->label('Time zone')
+ ->label('Display time zone')
+ ->helperText(new HtmlString('Display time zone only changes the offset in views and does not effect the scheduler.'))
->options(Timezone::all()->pluck('code', 'code'))
->searchable()
->required(),
Forms\Components\TextInput::make('time_format')
- ->hint(new HtmlString('DateTime Format'))
- ->hintIcon('heroicon-o-book-open')
+ ->hint(new HtmlString('🔗DateTime Format'))
->placeholder('M j, Y G:i:s')
->maxLength(25)
->required(),
@@ -74,8 +74,7 @@ public function form(Form $form): Form
Forms\Components\TextInput::make('speedtest_schedule')
->rules([new Cron()])
->helperText('Leave empty to disable scheduled tests.')
- ->hint(new HtmlString('Cron Generator'))
- ->hintIcon('heroicon-o-book-open')
+ ->hint(new HtmlString('🔗Cron Generator'))
->nullable()
->columnSpan(1),
Forms\Components\Select::make('speedtest_server')