Skip to content

Commit

Permalink
Merge branch 'master' into url-search-params
Browse files Browse the repository at this point in the history
  • Loading branch information
FleetAdmiralJakob committed Mar 23, 2024
2 parents 06416e6 + d90c2c5 commit 7dccfbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/pages/locationsettings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ const LocationSettings = observer(() => {
{findCitiesByName === undefined &&
inputRef.current?.value &&
inputRef.current?.value.length > 0 ? (
<ClipLoader color={"#ffffff"} loading={true} size={20} />
<ClipLoader color={"#ffffff"} loading size={20} />
) : null}
</div>
</div>{" "}
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/pages/search/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ const Search = () => {
{findCitiesByName === undefined &&
inputRef.current?.value &&
inputRef.current?.value.length > 0 ? (
<ClipLoader color={"#ffffff"} loading={true} size={20} />
<ClipLoader color={"#ffffff"} loading size={20} />
) : null}
</div>
</div>
Expand Down

0 comments on commit 7dccfbd

Please sign in to comment.