We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current definition in TS for regions is: regions?: [string] | string;
regions?: [string] | string;
Therefore I can not assing many regions, due to TS error
The fix needed is to change it to: regions?: string[] | string;
regions?: string[] | string;
The text was updated successfully, but these errors were encountered:
Here, looks like this package is no more maintained.. :/
This package (https://github.com/viclafouch/mui-tel-input) handles this problem and is well maintained
Sorry, something went wrong.
@viclafouch How did you figured out that is no longer maintained?
No branches or pull requests
Current definition in TS for regions is:
regions?: [string] | string;
Therefore I can not assing many regions, due to TS error
The fix needed is to change it to:
regions?: string[] | string;
The text was updated successfully, but these errors were encountered: