Skip to content

Commit

Permalink
feat(web): restrict Safari browser support to >= 16.5
Browse files Browse the repository at this point in the history
Followup of #1348

There are reports that WebWorkers don't work in Nextclade on Safari 16.3.

I was able to confirm that they do work on 16.5, so I am setting this version as the lowest supported. I don't have access to versions lower than that.
  • Loading branch information
ivan-aksamentov committed Mar 5, 2024
1 parent 906c130 commit 9002858
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function BrowserWarning() {
chrome: '>60',
edge: '>79',
firefox: '>52',
safari: '>=16',
safari: '>=16.5',
})

if (isSupportedBrowser || dismissed) {
Expand Down

0 comments on commit 9002858

Please sign in to comment.