Julian Schmidt
Julian Schmidt
I have the same issue. The proposed fix won't work for me cause it seems I don't have permissions to revoke authorizations in the workspace.
In fact, instead of adding GitHub in Slack, I was able to authorize Slack on GitHub side. By going to: GitHub > Settings > Scheduled Reminders > Choose your org...
Just to confirm, have you imported `inject`? ```ts import { inject } from 'vue' ```
Same here :) My example looks like this: ```ts import { defineStore } from 'pinia' export const useReservationForm = defineStore('reservationForm', () => { const data = { firstName: 'Joe', lastName:...
I too was a bit annoyed from the TypeScript warnings, so I've added these declarations to a `index.d.ts` file in my project's root: ```ts declare module 'nuxt-storage/local-storage' { export function...