diff --git a/src/Client/Features/Fines/List.razor b/src/Client/Features/Fines/List.razor
index 645439f..0773529 100644
--- a/src/Client/Features/Fines/List.razor
+++ b/src/Client/Features/Fines/List.razor
@@ -30,7 +30,7 @@
-
+
diff --git a/src/Client/Features/FreeAgents/Detail.razor b/src/Client/Features/FreeAgents/Detail.razor
index 316d819..b9ba8a4 100644
--- a/src/Client/Features/FreeAgents/Detail.razor
+++ b/src/Client/Features/FreeAgents/Detail.razor
@@ -1,5 +1,9 @@
@page "/freeagents/{playerId:int}"
+
+ @_title
+
+
@if(_result is null)
{
@@ -17,61 +21,67 @@
}
else
{
-
- @_title
-
-
-
-
-
- @_result.Name
+
+
+
+ ReallyLong NameGuySirMam
+
Team Owner
@_result.Team
Position
@_result.Position
- Bidding Ends on @_result.EndOfFreeAgency
-
-
- Submit A New Bid
-
-
-
-
-
+
+ Bidding Ends on
+
+
+ @_result.EndOfFreeAgency
+
-
- Bid History
- @if(_result.Bids.Any())
- {
-
- @{
- var firstBid = _result.Bids.First();
+
+
+
+ Submit A New Bid
+
+
+
+
+
+
+
+ Bid History
+ @if(_result.Bids.Any())
+ {
+
+ @{
+ var firstBid = _result.Bids.First();
+ }
+
+
+ @firstBid!.Team is winning with a bid of @firstBid.Amount on @(firstBid.CreatedOn)!
+
+
+ @foreach(var bid in _result.Bids.Skip(1))
+ {
+
+
+ @bid!.Team bid @bid.Amount on @(bid.CreatedOn).
+
+
+ }
+
}
-
-
- @firstBid!.Team is winning with a bid of @firstBid.Amount on @(firstBid.CreatedOn)!
-
-
- @foreach(var bid in _result.Bids.Skip(1))
+ else
{
-
-
- @bid!.Team bid @bid.Amount on @(bid.CreatedOn).
-
-
+
+ There is currently no bid history to show for this player.
+
}
-
- }
- else
- {
-
- There is currently no bid history to show for this player.
-
- }
+
+