Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doesn't work when two AwesomeAlert components are declared consecutively (ios only) #81

Open
yoosful opened this issue Feb 1, 2021 · 4 comments

Comments

@yoosful
Copy link

yoosful commented Feb 1, 2021

When two AwesomeAlert components are declared consecutively, the show property doesn't work properly in ios. As a temporary workaround, I had to wrap each one in a different component.

e.g.

<Container>
  <AwesomeAlert ... />
  <AwesomeAlert ... />
</Container>

workaround.

<Container>
  <SubContainer>
    <AwesomeAlert ... />
  </SubContainer>  
  <SubContainer>
    <AwesomeAlert ... />
  </SubContainer>
</Container>
@rishabhbhatia
Copy link
Owner

I'll have a look

@billnbell
Copy link

status?

@rishabhbhatia
Copy link
Owner

@billnbell try the workaround by Eric. Feel free to dig deeper and submit a PR.

@ozturksirin
Copy link

ozturksirin commented Dec 28, 2024

In alerts that need to run consecutively, values like settimeout 450 can be a solution. worked for me

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants