Paul
Paul
+1 also seeing this issue. However, it only seems to happen when I have other pending changes in that table. E.g., I renamed the table and added a new column...
I was also wondering the same. You can copy the code from `https://github.com/MauricioRobayo/nextjs-google-analytics/blob/main/src/interactions/event.ts` and modify it to call ` window.gtag("set")`. Like so ``` export function set( option: string, { ...otherOptions...
Before your `initHealthKit`, check `getAuthStatus`. If you get `NotDetermined`, then you should call `initHealthKit` as normal which would ask the user for permission. If `SharingDenied`, then link to Settings for...
@murshudov did you manage to solve this? I'm also having the same issue.
@murshudov yes also using coolify which I think where the issue is but I'm tearing my hair out. Your compose file would be much appreciated!
Did anyone solve this? @sillvva your workaround seems to work for now.
Include the mimetype manually with the image; ``` const blob = new Blob([imageBuffer], { type: "image/jpeg" }); const removed = await removeBackground(blob) ```