zak
zak
Getting a similar issue with the `(111) 111-1111` mask. No errors in the console but pasting doesn't work, whether it's an incomplete or complete phone number.
We may want to consider one of these two options: 1) Use `Promise` instead of `async/await` in `useBaseAxios` 2) Use something like [babel-plugin-transform-async-to-promises](https://github.com/rpetrich/babel-plugin-transform-async-to-promises) to transform `async/await` to native `Promise` calls...
That would be sick - will do a comparison of the current build artifact size vs. the one generated by pika and report back.
Hell yeah - we can close this once that's merged.
@yashgada That'd be great -- will keep an eye out for that.
Really interesting idea - will open an issue for this.
Oh wait, this is an issue lol. Let's take a stab at this soon. Any ideas for what this might look like API-wise?
I've been messing with it the last few nights - I'll throw up a PR soon with some Suspense stuff.
So this is the API I'm toying with (and an example implementation): ```js const Example = () => { const { data, error } = useFetch('https://example.com', { suspense: true });...
Will leave this issue open for now - let's use this to drop any relevant thoughts and implementation ideas as data fetching with Suspense matures.