From 9fa68fd8aba200ebc51589432afaf3aaf8bb2e39 Mon Sep 17 00:00:00 2001
From: Mikhail Shashin <shashinma@icloud.com>
Date: Mon, 5 Feb 2024 04:28:22 +0300
Subject: [PATCH] Update PWA manifest orientation to any

Changed the orientation settings in PwaManifestBuilder.php from 'portrait' to 'any'. This allows the PWA to adjust to any screen orientation, enhancing user flexibility.
---
 app/App/PwaManifestBuilder.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/App/PwaManifestBuilder.php b/app/App/PwaManifestBuilder.php
index ba4331a0f..81ab2fcd7 100644
--- a/app/App/PwaManifestBuilder.php
+++ b/app/App/PwaManifestBuilder.php
@@ -26,7 +26,7 @@ class PwaManifestBuilder
             "launch_handler" => [
                 "client_mode" => "focus-existing"
             ],
-            "orientation" => "portrait",
+            "orientation" => "any",
             "icons" => [
                 [
                     "src" => setting('app-icon-32') ?: url('/icon-32.png'),