The manual at https://manuals.omamix.org/2/the-omarchy-manual uses a Rails default called allow_browser that does User-Agent sniffing to try to determine if a browser is "modern". This process is unreliable, so some current and capable browsers are incorrectly blocked:

This is Firefox 141.1 on iOS, which is the same engine as iOS Safari.
Because of problems like this, the industry moved on from sniffing in 2003 with "progressive enhancement". The quickest way to fix the manual would be to delete the allow_browser line, which probably appears in app/controllers/application_controller.rb.
The manual at https://manuals.omamix.org/2/the-omarchy-manual uses a Rails default called
allow_browserthat does User-Agent sniffing to try to determine if a browser is "modern". This process is unreliable, so some current and capable browsers are incorrectly blocked:This is Firefox 141.1 on iOS, which is the same engine as iOS Safari.
Because of problems like this, the industry moved on from sniffing in 2003 with "progressive enhancement". The quickest way to fix the manual would be to delete the
allow_browserline, which probably appears inapp/controllers/application_controller.rb.