Skip to content

Commit

Permalink
fix(sandbox): prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
friedger authored and edu-stx committed Mar 29, 2023
1 parent 67dcdf1 commit 095bae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/utils/get-stx-transfer-direction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const validateStacksAddress = (stacksAddress: string): boolean => {

export const validateStacksPrincipal = (contractId: string): boolean => {
try {
const [stacksAddress] = contractId.split(".")
const [stacksAddress] = contractId.split('.');
c32addressDecode(stacksAddress);
return true;
} catch (e) {
Expand Down

0 comments on commit 095bae9

Please sign in to comment.