mirror of
https://github.com/versia-pub/api.git
synced 2025-12-06 16:38:20 +01:00
fix(client): 🐛 Fix missing quotes
This commit is contained in:
parent
92a1d82c8b
commit
028915f6c6
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
|
|
@ -43,7 +43,7 @@ jobs:
|
|||
run: echo -e "[install]\nregistry = { url = \"https://registry.npmjs.org/\", token = \"${{ secrets.NPM_TOKEN }}\" }" > bunfig.toml
|
||||
|
||||
- name: Copy bunfig.toml to package directory
|
||||
run: cd ${{ github.event.inputs.package }} && cp ../bunfig.toml .
|
||||
run: cp bunfig.toml ${{ github.event.inputs.package }}/bunfig.toml
|
||||
|
||||
- name: Install dependencies
|
||||
run: bun install --frozen-lockfile
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ export type Status = {
|
|||
language: string | null;
|
||||
pinned: boolean | null;
|
||||
emoji_reactions: Array<Reaction>;
|
||||
quote: boolean;
|
||||
quote: Status | null;
|
||||
bookmarked: boolean;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue