Skip to content

Commit

Permalink
chore: Update token symbol in getMakerPositionInfo helper function
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinciarka committed Jul 5, 2024
1 parent 864a29e commit 2197418
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ export async function getMakerPositionInfo({
ilk: ilkLabel,
pip: { value },
rate,
tokenSymbol,
tokenSymbol: rawTokenSymbol,
} = ilk

const tokenSymbol = rawTokenSymbol === 'PAX' ? 'USDP' : rawTokenSymbol

// determine position type based on subgraph and db responses
const resolvedType =
type === 'Guni' || tokenSymbol === 'G-UNI'
Expand Down

0 comments on commit 2197418

Please sign in to comment.