flibustier7seas

Results 8 comments of flibustier7seas

I have the same issue. I changed URL when user is unathorized: ```ts export default function* root() { yield takeEvery(LOCATION_CHANGE, routerSaga); } function* routerSaga({ payload }: LocationChangeAction) { const path...

Temporary solution: ```csharp serviceCollection.AddSwaggerGen(builder => { builder.SupportNonNullableReferenceTypes(); builder.SchemaFilter(); ... }); ``` ```csharp class RequiredNotNullableSchemaFilter : ISchemaFilter { public void Apply(OpenApiSchema schema, SchemaFilterContext context) { if (schema.Properties == null) { return;...

@JosNun I'm using the following workaround: ```csharp class RequiredNotNullableSchemaFilter : ISchemaFilter { public void Apply(OpenApiSchema schema, SchemaFilterContext context) { if (schema.Properties == null) { return; } FixNullableProperties(schema, context); var notNullableProperties...

> how can I know that a: is a drive or a directory followed by colon delimiter? Maybe the same way docker does it. As far as I understand, docker...

@benyaminl Hi! I have tried with the latest version. It seems it doesn't work. ```sh pip install podman-compose --upgrade # Requirement already satisfied: podman-compose in c:\python312\lib\site-packages (1.0.6) # Collecting podman-compose...

> I think if you want that to work, just change it into /mnt/c, approach using unix ways.... It seems that `/mnt/c/...` and `/c/...` patterns don't work as well; new...