anyone familiar with this error: [code with error message][1] [1]: https://i.sstatic.net/SbJvu.png
{t(`${settingType}` as const)}
error:
No overload matches this call.
Overload 1 of 2, '(key: TemplateStringsArray | Normalize<{
Thanks :)
Solution: change t(str) to
t(str as unknown as TemplateStringsArray)
I personally created a helper function to do so, which I recommend.
I'm facing the same problem and Adri's answer helped me.
If you want, this is the function I've done:
export const normalizeKey = (key: string) => key as unknown as TemplateStringsArray;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With