Skip to content

Commit

Permalink
fix(qwik-nx): use location.url.searchParams in the "flower" route tem…
Browse files Browse the repository at this point in the history
…plate
  • Loading branch information
dmitry-stepanenko committed Apr 5, 2023
1 parent 282ad2b commit 2a30f3d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default component$(() => {
}}
class={{
host: true,
pride: loc.query['pride'] === 'true',
pride: loc.url.searchParams.get('pride') === 'true',
}}
>
{Array.from({ length: state.number }, (_, i) => (
Expand Down

0 comments on commit 2a30f3d

Please sign in to comment.