Skip to content

Commit

Permalink
use "collectible" noun over adj, more obvious copy for transaction types
Browse files Browse the repository at this point in the history
  • Loading branch information
gsteenkamp89 committed Nov 23, 2023
1 parent f8e2d58 commit c7d8070
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/plugins/oSnap/Create.vue
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ async function fetchCollectibles(network: Network, gnosisSafeAddress: string) {
console.log({ response });
return response.results;
} catch (error) {
console.warn('Error fetching collectables');
console.warn('Error fetching collectibles');
}
return [];
}
Expand Down
6 changes: 3 additions & 3 deletions src/plugins/oSnap/components/Input/TransactionType.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ const transactionTypesWithDetails: {
}[] = [
{
type: 'transferFunds',
title: 'Transfer funds',
title: 'Send tokens',
description: 'Transfer funds to another address'
},
{
type: 'transferNFT',
title: 'Transfer collectable',
description: 'Transfer a collectable to another address'
title: 'Send NFT',
description: 'Transfer a collectible to another address'
},
{
type: 'contractInteraction',
Expand Down

0 comments on commit c7d8070

Please sign in to comment.