fix(client): 🐛 Fix missing quotes

This commit is contained in:
Jesse Wierzbinski 2024-06-07 22:45:37 -10:00
parent 92a1d82c8b
commit 028915f6c6
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -43,7 +43,7 @@ jobs:
run: echo -e "[install]\nregistry = { url = \"https://registry.npmjs.org/\", token = \"${{ secrets.NPM_TOKEN }}\" }" > bunfig.toml run: echo -e "[install]\nregistry = { url = \"https://registry.npmjs.org/\", token = \"${{ secrets.NPM_TOKEN }}\" }" > bunfig.toml
- name: Copy bunfig.toml to package directory - 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 - name: Install dependencies
run: bun install --frozen-lockfile run: bun install --frozen-lockfile

View file

@ -38,7 +38,7 @@ export type Status = {
language: string | null; language: string | null;
pinned: boolean | null; pinned: boolean | null;
emoji_reactions: Array<Reaction>; emoji_reactions: Array<Reaction>;
quote: boolean; quote: Status | null;
bookmarked: boolean; bookmarked: boolean;
}; };