Skip to content

Commit 755dc56

Browse files
committed
Update year references to use current year
1 parent 0dcfd9b commit 755dc56

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

PocketDDD.BlazorClient/PocketDDD.BlazorClient/Features/Home/Components/Home.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
@code {
4141
protected override void OnInitialized()
4242
{
43-
Dispatcher.Dispatch(new SetHeaderBarTitleAction("DDDSW 2024"));
43+
Dispatcher.Dispatch(new SetHeaderBarTitleAction($"DDDSW {DateTime.UtcNow.Year}"));
4444

4545
if(State.Value.Loading)
4646
Dispatcher.Dispatch(new LoadDataAction());

PocketDDD.BlazorClient/PocketDDD.BlazorClient/Features/Security/Components/Login.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
@inject IDispatcher Dispatcher
77

88
<MudDialog>
9-
<TitleContent><h2 class="d-flex justify-center">Welcome to DDD South West 2024</h2> </TitleContent>
9+
<TitleContent><h2 class="d-flex justify-center">Welcome to DDD South West @DateTime.UtcNow.Year</h2> </TitleContent>
1010
<DialogContent>
1111

1212
<MudCard>

terraform/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
locals {
22
resource_prefix = "pocketddd-${var.env}"
33
sql_server_name = "${local.resource_prefix}-sql-server"
4-
subdomain = var.env == "production" ? "pocket2024" : "pocket-${var.env}"
4+
subdomain = var.env == "production" ? "pocket2025" : "pocket-${var.env}"
55
}

0 commit comments

Comments
 (0)