diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0137cc9..668e429 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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 diff --git a/client/types/status.ts b/client/types/status.ts index c61c984..16e33fd 100644 --- a/client/types/status.ts +++ b/client/types/status.ts @@ -38,7 +38,7 @@ export type Status = { language: string | null; pinned: boolean | null; emoji_reactions: Array; - quote: boolean; + quote: Status | null; bookmarked: boolean; };