Lukas Kahwe Smith

Results 397 comments of Lukas Kahwe Smith

We can then also add a link to your repo from this bundle to steer people towards your work.

ok checking here https://forum.languagetool.org/t/community-languagetool-org-has-moved-to-a-new-server/3068/2?u=lsmith

`credentials` defaults to `same-site` but even setting it to `include` does not fix the issue. I also tried setting `supports_credentials` in cors.php to `true`. I also tried setting `sandbox`: `allow-same-origin`...

Thank you for your additional insight. It should be noted that the session cookie is from the same domain, so from my understanding this should not be an issue.

So in my api.php I have. These are the endpoints I am calling ``` Route::middleware(['auth:sanctum'])->group(function () { Route::get('/user/analytics', [AnalyticsController::class, 'userApi']) ->name('api_user_analytics'); Route::get('/team/analytics', [AnalyticsController::class, 'organizationApi']) ->name('api_team_analytics'); }); ``` In Kernel.php I...

any update here? updating my tsconfig.json to use `es2022` for the `lib` fixed it for me. need to see what the general impact is though.

looks like this previous ticket was closed erroneously https://github.com/mailjet/laravel-mailjet/issues/56 dependencies should be explicit.

This looks similar to my issue. On different relations at times I see only one entity included in the `includes`, despite all of the relations properly being listed in `data`....

> This looks similar to my issue. On different relations at times I see only one entity included in the `includes`, despite all of the relations properly being listed in...

For the record I have debug this and it appears that the entities are "lost" during the serialization `const serialized = await serializer.serialize(itemsWithId, options);` https://github.com/zenstackhq/zenstack/blob/main/packages/server/src/api/rest/index.ts#L1423C9-L1423C77 So the data is contained...