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 ce9c20c commit 774e56aCopy full SHA for 774e56a
lib/algora_web/live/org/dashboard_live.ex
@@ -1353,7 +1353,10 @@ defmodule AlgoraWeb.Org.DashboardLive do
1353
class="flex flex-wrap items-center gap-x-3 gap-y-1 text-sm text-muted-foreground sm:text-sm"
1354
>
1355
<span class="font-semibold font-display text-base sm:text-lg text-emerald-400">
1356
- {Money.to_string!(@match[:hourly_rate])}/hr
+ {@match[:hourly_rate]
1357
+ |> Money.mult!(@match.user.hours_per_week || 30)
1358
+ |> Money.mult!(Decimal.new("1.13"))
1359
+ |> Money.to_string!()}/wk
1360
</span>
1361
</div>
1362
0 commit comments