Skip to content

Commit

Permalink
fix: all string types (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrejborstnik authored Feb 17, 2025
1 parent e3930d1 commit d2cdfa1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions react-native/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export const connect = async (): Promise<
| {
addresses: any;
publicKeys: any;
credentialId: String;
credentialId: string;
}
| ErrorResponse
> => {
Expand All @@ -144,8 +144,8 @@ export const signTransaction = async (
data: SignTransactionParams
): Promise<
| {
rawTx: String;
txId: String;
rawTx: string;
txId: string;
broadcasted?: boolean;
broadcastError?: string;
}
Expand Down

0 comments on commit d2cdfa1

Please sign in to comment.