Loading multiple atlas

I am trying to animate using multiple atlas since I have a total of 6 moves and I am not able to fit them into one sheet. When I try to load them like below code, I am getting warnings. Texture.frame missing

this.load.animation('myData', 'WedgeAnimations.json');
    this.load.atlas(
      'wedge',
      'WedgeSheet.json',
      'Wedge.png'
    );
    this.load.atlas(
      'wedge',
      'Wedge2Sheet.json',
      'Wedge2.png'
    );

[Processing: WedgeAnimations.json...]()
[Processing: Wedge2Sheet.json...]()
![Wedge2|500x500](upload://eBCJQCjzZQ9A9bYhhkibz5Ih63M.jpeg)
[Processing: WedgeSheet.json...]()
![Wedge|500x500](upload://aWtsLSVLipeKhqLAPcTA19GD5j9.png)

:wave:

You can’t load two atlases by the same key, wedge.