Skip to content

Commit

Permalink
Merge pull request #78 from VaquitApp/77-corregir-texto-de-tooltip-en…
Browse files Browse the repository at this point in the history
…-listado-de-deudas

Fix tooltip
  • Loading branch information
mrti259 authored Jun 19, 2024
2 parents e847236 + d4854da commit d2d31a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion my-app/src/routes/groups/[id=integer]/balance/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
export const personalBalanceTooltip = balanceTooltip(data.userBalance);
export function balanceTooltip(balance: number) {
return balance > 0 ? 'Debe dinero' : balance < 0 ? 'Se le debe dinero' : 'Sin deudas';
return balance > 0 ? 'Se le debe dinero' : balance < 0 ? 'Debe dinero' : 'Sin deudas';
}
export async function sendReminder() {
Expand Down

0 comments on commit d2d31a4

Please sign in to comment.