Skip to content

Commit 245ddcc

Browse files
committed
Fixed whiespace issues
1 parent 23edcf9 commit 245ddcc

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<AspNetCoreVersion>6.0.0</AspNetCoreVersion>
44
<BlazorVersion>6.0.0</BlazorVersion>
55
<EntityFrameworkVersion>6.0.0</EntityFrameworkVersion>
6-
<TargetFrameworkVersion>net6.0</TargetFrameworkVersion>
6+
<TargetFrameworkVersion>net6.0</TargetFrameworkVersion>
77
<SystemNetHttpJsonVersion>6.0.0</SystemNetHttpJsonVersion>
88
</PropertyGroup>
99
</Project>

save-points/00-get-started/BlazingPizza.Client/BlazingPizza.Client.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>$(TargetFrameworkVersion)</TargetFramework>
5-
<ImplicitUsings>true</ImplicitUsings>
5+
<ImplicitUsings>true</ImplicitUsings>
66
</PropertyGroup>
77

88
<ItemGroup>

save-points/00-get-started/BlazingPizza.ComponentsLibrary/BlazingPizza.ComponentsLibrary.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>$(TargetFrameworkVersion)</TargetFramework>
5-
<ImplicitUsings>true</ImplicitUsings>
5+
<ImplicitUsings>true</ImplicitUsings>
66
</PropertyGroup>
77

88
<ItemGroup>

save-points/00-get-started/BlazingPizza.ComponentsLibrary/LocalStorage.cs

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ namespace BlazingPizza.ComponentsLibrary;
44

55
public static class LocalStorage
66
{
7-
public static ValueTask<T> GetAsync<T>(IJSRuntime jsRuntime, string key)
8-
=> jsRuntime.InvokeAsync<T>("blazorLocalStorage.get", key);
7+
public static ValueTask<T> GetAsync<T>(IJSRuntime jsRuntime, string key)
8+
=> jsRuntime.InvokeAsync<T>("blazorLocalStorage.get", key);
99

10-
public static ValueTask SetAsync(IJSRuntime jsRuntime, string key, object value)
11-
=> jsRuntime.InvokeVoidAsync("blazorLocalStorage.set", key, value);
10+
public static ValueTask SetAsync(IJSRuntime jsRuntime, string key, object value)
11+
=> jsRuntime.InvokeVoidAsync("blazorLocalStorage.set", key, value);
1212

13-
public static ValueTask DeleteAsync(IJSRuntime jsRuntime, string key)
14-
=> jsRuntime.InvokeVoidAsync("blazorLocalStorage.delete", key);
13+
public static ValueTask DeleteAsync(IJSRuntime jsRuntime, string key)
14+
=> jsRuntime.InvokeVoidAsync("blazorLocalStorage.delete", key);
1515
}

0 commit comments

Comments
 (0)