diff --git a/resources/views/emails/failed.blade.php b/resources/views/emails/failed.blade.php
index 432eaf5..a3298d5 100644
--- a/resources/views/emails/failed.blade.php
+++ b/resources/views/emails/failed.blade.php
@@ -8,7 +8,7 @@
> **@lang('IP Address:')** {{ $ipAddress }}
> **@lang('Browser:')** {{ $browser }}
@if ($location && $location['default'] === false)
-> **@lang('Location:')** {{ $location['city'] ?? __('Unknown City') }}, {{ $location['state'], __('Unknown State') }}
+> **@lang('Location:')** {{ $location['city'] ?? __('Unknown City') }}, {{ $location['state'] ?? __('Unknown State') }}
@endif
@lang('If this was you, you can ignore this alert. If you suspect any suspicious activity on your account, please change your password.')
diff --git a/resources/views/emails/new.blade.php b/resources/views/emails/new.blade.php
index 2a8b7a2..333d0d0 100644
--- a/resources/views/emails/new.blade.php
+++ b/resources/views/emails/new.blade.php
@@ -8,7 +8,7 @@
> **@lang('IP Address:')** {{ $ipAddress }}
> **@lang('Browser:')** {{ $browser }}
@if ($location && $location['default'] === false)
-> **@lang('Location:')** {{ $location['city'] ?? __('Unknown City') }}, {{ $location['state'], __('Unknown State') }}
+> **@lang('Location:')** {{ $location['city'] ?? __('Unknown City') }}, {{ $location['state'] ?? __('Unknown State') }}
@endif
@lang('If this was you, you can ignore this alert. If you suspect any suspicious activity on your account, please change your password.')