diff --git a/resources/views/livewire/customer/support/show.blade.php b/resources/views/livewire/customer/support/show.blade.php
index 30ba8dc8..9e49b9dc 100644
--- a/resources/views/livewire/customer/support/show.blade.php
+++ b/resources/views/livewire/customer/support/show.blade.php
@@ -133,7 +133,7 @@
- ⌘/Ctrl + Enter to send
+ ⌘/Ctrl + Enter to send
Send Reply
diff --git a/tests/Feature/SupportFormPlaceholderTest.php b/tests/Feature/SupportFormPlaceholderTest.php
new file mode 100644
index 00000000..14741f49
--- /dev/null
+++ b/tests/Feature/SupportFormPlaceholderTest.php
@@ -0,0 +1,37 @@
+ 'price_test_max_yearly']);
+ $user = User::factory()->create();
+ License::factory()->max()->active()->create(['user_id' => $user->id]);
+ Subscription::factory()->for($user)->active()->create([
+ 'stripe_price' => 'price_test_max_yearly',
+ ]);
+
+ $html = Livewire::actingAs($user)
+ ->test(Create::class)
+ ->set('selectedProduct', 'mobile')
+ ->call('nextStep')
+ ->html();
+
+ $this->assertStringNotContainsString('
', $html);
+ $this->assertStringContainsString("1. Open the app\n2. Navigate to...\n3. Click on...", $html);
+ }
+}