Skip to content

Commit

Permalink
Fix minor issue
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-pratik-k committed Dec 31, 2024
1 parent 50fb128 commit d355ff8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/lib/components/web_view_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ class _WebViewScreenState extends State<WebViewScreen> {
NavigationDelegate(
onNavigationRequest: (request) {
if (request.url
.startsWith("https://canopas.github.io/cloud-gallery/") &&
request.url != "https://canopas.github.io/cloud-gallery/") {
.startsWith("https://cloud-gallery.canopas.com/") &&
request.url != "https://cloud-gallery.canopas.com/") {
return NavigationDecision.navigate;
}
return NavigationDecision.prevent;
Expand Down

0 comments on commit d355ff8

Please sign in to comment.