Skip to content

Commit

Permalink
fix(deps): update dependency @cuculus/cuculus-api to v0.4.3 (#332)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| @​cuculus/cuculus-api | [`0.4.1` ->
`0.4.3`](https://renovatebot.com/diffs/npm/@cuculus%2fcuculus-api/0.4.1/0.4.3)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@cuculus%2fcuculus-api/0.4.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@cuculus%2fcuculus-api/0.4.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@cuculus%2fcuculus-api/0.4.1/0.4.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@cuculus%2fcuculus-api/0.4.1/0.4.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

@coderabbitai: ignore

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/cuculus-dev/cuculus).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIzMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: takecchi <takecchi.kobayashi@gmail.com>
  • Loading branch information
renovate[bot] and takecchi authored Mar 8, 2024
1 parent 35242d7 commit ef04791
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}
},
"dependencies": {
"@cuculus/cuculus-api": "0.4.1",
"@cuculus/cuculus-api": "0.4.3",
"@ducanh2912/next-pwa": "10.2.5",
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const NormalProfileCard: Story = {
username: 'takecchi',
createdAt: new Date('2023-10-04T18:57:44.373Z'),
profileImageUrl: '/mock/profileAvatarImage.png',
_protected: false,
isPrivate: false,
verified: false,
bio: 'こんにちは。',
url: '',
Expand Down
3 changes: 2 additions & 1 deletion src/swr/client/post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ const update = async (
if (arg.reposted) {
userPost = await postsApi.createRepost({ id: key.postId }, { headers });
} else {
userPost = await postsApi.deleteRepost({ id: key.postId }, { headers });
// FIXME 一旦通るようにしただけなのでエラーになります。
await postsApi.deletePost({ id: key.postId }, { headers });
}
}
// どちらでもない場合
Expand Down

0 comments on commit ef04791

Please sign in to comment.