Lucas Prins
Results
2
comments of
Lucas Prins
Why are you using sheet for this? Seems like a combobox could be good for this https://ui.shadcn.com/docs/components/combobox Anyway, could you make a code sandbox so we can reproduce and see?
```ts function onSubmitCrop() { if (completedCrop) { // create a canvas element to draw the cropped image const canvas = document.createElement("canvas"); // get the image element const image = imgRef.current;...