Raffi Zulvian Muzhaffar
Raffi Zulvian Muzhaffar
I am facing the same issue while trying to load the model that I trained on python. The model using the [MobileNetV3](https://tfhub.dev/google/imagenet/mobilenet_v3_small_100_224/feature_vector/5) feature vector version from TF Hub. - TensorFlow.js...
Build failed due to formatting/lint error, not related to xnnpack (google/XNNPACK#1613) I think. You can see it on the build log.
You can just look at the build log or run ```yarn run lint``` locally inside tfjs-backend-wasm directory. This command will output the log contain information of which line causes the...
I faced a similar issue. My workaround was to also supply `src` to `Avatar.Image` and `NextImage`. ```jsx ``` It's a little bit redundant, but it could be wrapped inside a...
You could provide an `asChild` prop to the `AvatarImage` component. Since shadcn-ui is built on top of Radix UI, all valid Radix UI props are also valid shadcn-ui props. Here's...
You're welcome! To add a little bit, apparently, the reason why we need to provide `src` twice is the default behavior of Radix UI's `Avatar.` There is already someone who...