Basit Ali

Results 25 comments of Basit Ali

FYI, calling the `open` method on the bottomsheet ref animates the modal to the new height. for e.g. ```js const bottomSheet = useRef(); useEffect(() => { if (visible) { bottomSheet.current.open();...

The changes have not yet been merged in the main repository. You can download the source from https://github.com/basitali/MJPopupViewController or if using cocoapods, ``` pod 'MJPopupViewController', :git => "https://github.com/basitali/MJPopupViewController.git" ```

Have a similar problem, I have pytest-timeout and the tests are timing out while preparing the diff. This may be similar to #625 in a way, but at the moment,...

Temporary resolved it using a custom snapshot extension, ```python class NoDiffSnapshotExtension(SingleFileSnapshotExtension): def diff_snapshots(self, serialized_data, snapshot_data): return "diff-is-disabled" def diff_lines(self, serialized_data, snapshot_data): return ["diff", "is", "disabled"] ```

Playing around with it more suggests this may not necessarily be a docker / container issue. Disabling / Enabling some imports shows different behaviour in and out of the container....

> @BasitAli Do you have any idea why this happens? I've found that we get these files when we run testmon in our remote VM . Unfortunately, I failed to...

I think the problem happens when generating the database. Running the tests is the after-effect I believe. On Wed, Nov 15, 2023, 6:32 PM Tibor Arpas ***@***.***> wrote: > The...

Just ran into this and initially used `onSelectionChange` to manually push the router page, but while playing with other components specifically Button, found out that all you need is `as={Link}`...

> Have you considered using a different approach to solve this problem? There's an active discussion at https://github.com/microsoft/PowerToys/issues/7925. There were two other solutions posted here, 1. Use the secondary click...