Skip to content

Commit

Permalink
migrate name detail
Browse files Browse the repository at this point in the history
  • Loading branch information
janmichek committed Oct 22, 2024
1 parent ceedb66 commit efa9ede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/nameDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const useNameDetailsStore = defineStore('nameDetails', () => {

async function isNameAvailable(name) {
try {
await axios.get(`${MIDDLEWARE_URL}/v2/names/${name}`)
await axios.get(`${MIDDLEWARE_URL}/v3/names/${name}`)
return true
} catch (error) {
if (error.response.status === 404) {
Expand Down

0 comments on commit efa9ede

Please sign in to comment.