Ravi Mohan

Results 5 comments of Ravi Mohan

> Please confirm that your connection string is correct. yes, can confirm. I am using primary connection string. Also it does work intermittently. > Additionally, did the issue only occur...

thank you, I will check out the troubleshooting methods. I will email the resource id to you.

> you can find amplify app id at amplify app detail you can get your app id by running, `aws amplify list-apps `

define enum ``` const ThemeEnum = z.enum(["light", "dark", "system"]) type ThemeEnum = z.infer ``` schema ``` const formSchema = z.object({ theme: ThemeEnum.optional(), }) ``` form field ``` ( Theme field.onChange(ThemeEnum.parse(value))}...

@Char99s, @shiftcontrol-dan, Using "preventDefault" works by keeping the dialog open. But it remains open even when the dialog is closed. Is there way to automatically close the dropdown menu when...