You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the documentation for Entra, it lists a domainHint parameter that can be added to the additionalAuthParameters which is a string. However In src/runtime/providers/entra.ts it is typed as a boolean, which means nuxt.config.ts always has an error if it's used.
You can't even set it to a boolean since additionalAuthParameters is of type Record<string, string>.
I'm guessing that it's supposed to be a string, and that there is just a small mistake in the configuration type reference?
The text was updated successfully, but these errors were encountered:
Just a small one.
In the documentation for Entra, it lists a
domainHint
parameter that can be added to theadditionalAuthParameters
which is a string. However Insrc/runtime/providers/entra.ts
it is typed as a boolean, which meansnuxt.config.ts
always has an error if it's used.You can't even set it to a boolean since
additionalAuthParameters
is of typeRecord<string, string>
.I'm guessing that it's supposed to be a string, and that there is just a small mistake in the configuration type reference?
The text was updated successfully, but these errors were encountered: