Skip to content

Commit

Permalink
fix(example): rebuild Retina demo map when no access key provided if …
Browse files Browse the repository at this point in the history
…no key necessary (#1833)
  • Loading branch information
JaffaKetchup authored Feb 20, 2024
1 parent 95ff019 commit e49cac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/lib/pages/retina.dart
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ class _RetinaPageState extends State<RetinaPage> {
maxZoom: 19,
),
children: [
if (accessToken?.isNotEmpty ?? false) tileLayer,
if (accessToken?.isNotEmpty ?? true) tileLayer,
RichAttributionWidget(
attributions: [
LogoSourceAttribution(
Expand Down

0 comments on commit e49cac7

Please sign in to comment.