We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59d0fdc commit 5fa2efeCopy full SHA for 5fa2efe
lib/algora_web/live/org/dashboard_live.ex
@@ -1346,7 +1346,10 @@ defmodule AlgoraWeb.Org.DashboardLive do
1346
class="flex flex-wrap items-center gap-x-3 gap-y-1 text-sm text-muted-foreground sm:text-sm"
1347
>
1348
<span class="font-semibold font-display text-base sm:text-lg text-emerald-400">
1349
- {Money.to_string!(@match[:hourly_rate])}/hr
+ {@match[:hourly_rate]
1350
+ |> Money.mult!(@match.user.hours_per_week || 30)
1351
+ |> Money.mult!(Decimal.new("1.13"))
1352
+ |> Money.to_string!()}/wk
1353
</span>
1354
</div>
1355
0 commit comments