Skip to content

Commit 439c129

Browse files
committed
mobile(web): fix build error by removing const PathUrlStrategy() (constructor not const on Flutter 3.35.x)
1 parent 1e3986d commit 439c129

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mobile/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ void main() async {
2222

2323
// Use clean path-based URLs on web (no #)
2424
if (kIsWeb) {
25-
setUrlStrategy(const PathUrlStrategy());
25+
setUrlStrategy(PathUrlStrategy());
2626
}
2727

2828
// Initialize environment configuration

0 commit comments

Comments
 (0)