Skip to content

Commit

Permalink
chore: bump to 0.13.0-beta.18
Browse files Browse the repository at this point in the history
  • Loading branch information
yashdesu committed Mar 28, 2024
1 parent 827baa6 commit c31e105
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clubs",
"version": "0.13.0-beta.17",
"version": "0.13.0-beta.18",
"private": true,
"type": "module",
"scripts": {
Expand Down
5 changes: 3 additions & 2 deletions src/plugins/achievements/components/Achievement.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import type { UndefinedOr } from '@devprotocol/util-ts'
import type { connection as Connection } from '@devprotocol/clubs-core/connection'
import { meta } from '../index'
import { Strings } from '../i18n'
import type { Achievement } from '../types'
import Skeleton from '@components/Global/Skeleton.svelte'
Expand Down Expand Up @@ -104,7 +105,7 @@
isAchievementDataNotFetched = false
const response = await fetch(
`/api/devprotocol:clubs:plugin:achievements/achievement/${achievementId}`,
`/api/${meta.id}/achievement/${achievementId}`,
{ method: 'GET' },
)
.then(
Expand Down Expand Up @@ -178,7 +179,7 @@
return
}
const url = `/api/devprotocol:clubs:plugin:achievements/achievements/claim`
const url = `/api/${meta.id}/achievements/claim`
const headers = {
'Content-Type': 'application/json;charset=UTF-8',
}
Expand Down

0 comments on commit c31e105

Please sign in to comment.