Skip to content

Commit

Permalink
fix: attempt to fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
fbwoolf committed Feb 19, 2024
1 parent 1d55f2b commit c98fd61
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test-app/src/components/profile.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState } from 'react';

import { useAuth } from '@common/use-auth';
import { stacksMainnetNetwork } from '@common/utils';
import { stacksMainnetNetwork, stacksTestnetNetwork } from '@common/utils';
import { openProfileUpdateRequestPopup } from '@stacks/connect';
import { StacksNetwork } from '@stacks/network';
import { PublicPersonProfile, PublicProfile } from '@stacks/profile';
Expand Down Expand Up @@ -70,11 +70,11 @@ export const Profile = () => {
},
],
},
stacksMainnetNetwork
stacksTestnetNetwork
)
}
>
Update profile (Mainnet)
Update profile (Testnet)
</styled.button>

<styled.button
Expand All @@ -85,11 +85,11 @@ export const Profile = () => {
{
name: 1,
} as any,
stacksMainnetNetwork
stacksTestnetNetwork
)
}
>
Try to update invalid profile (Mainnet)
Try to update invalid profile (Testnet)
</styled.button>
</Flex>
</Box>
Expand Down

0 comments on commit c98fd61

Please sign in to comment.