Hayden Briese

Results 11 issues of Hayden Briese

### Current behaviour `onLongPress` doesn't work when passed as a prop to `TouchableRipple` ### Expected behaviour `onLongPress` is executed, as specified by your [documentation](https://callstack.github.io/react-native-paper/touchable-ripple.html#onLongPress) ### Code sample The snack is...

TouchableRipple
repro provided

Currently in Appbar, `.type` of the children is used to determine what the child is for e.g. [`AppbarBackAction`](https://github.com/callstack/react-native-paper/blob/6afa4fb98c6826c4d6b80db055ef8f21ed07b59a/src/components/Appbar/Appbar.tsx#L213) Is it possible to override a component's `.type` so that it can...

needs repro

Nonces are limited to 32 bits, but `uint256` on-chain

enhancement

Is there a way to run an arbitrary command with the dotenv-vault env vars injected? e.g. ```bash dotenv-vault ?something? -- echo $MY_VAR ``` We currently use [dotenv-cli](https://www.npmjs.com/package/dotenv-cli) for this purpose

**Describe the bug** Auth request events include `verifyContext` however this isn't reflected in the type **Expected behavior** `Web3WalletTypes.AuthRequest` type to include `verifyContext` **SDK Version** - Client: `@walletconnect/web3wallet` (JS) - Version:...

type: bug

When selecting a link that was selected in `filter_single` you get a `ResultCardinalityMismatchError: the query has cardinality MANY which does not match the expected cardinality ONE` error. Copying the edgeql...

bug

**Code** ```typescript // Inferred type: string | number | bigint // Expected: bigint const max = await e.max(e.set(1n, 2n)).run(client); ``` **Versions (please complete the following information):** - OS: - EdgeDB...

enhancement

## Description Add `typescript` as a `format` option. This allows importing the abi with the constant type in TypeScript, making the abi usable by [viem](https://viem.sh/). Currently this is done either...

**Code** The code causing the error. ```typescript e.greet(e.cast(e.Name, 'greg')); ``` **Schema** ``` module default { scalar type Name extending str {} function greet(name: Name) -> str using ( "Hello, "...

**Code** The code causing the error. ```typescript e.select(e.greet('greg')).run(db); # OR e.select(e.greet('greg'), e.cast(e.str, e.set())).run(db); ``` **Schema** ``` module default { function greet(name: str, suffix: optional str) -> str using ( "Hello,...

bug