Skip to content

Commit

Permalink
Merge pull request #6891 from thnaylor/fix/6890
Browse files Browse the repository at this point in the history
fix: remove prevent default event from function
  • Loading branch information
roiLeo authored Aug 23, 2023
2 parents 7584d84 + 6f9d184 commit d09c3b6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions components/landing/SearchLanding.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ const landingImage = computed(() => {
}
})
const switchChain = (value, event) => {
event.preventDefault()
const switchChain = (value) => {
if (value !== urlPrefix.value) {
setUrlPrefix(value)
}
Expand Down

0 comments on commit d09c3b6

Please sign in to comment.