Skip to content

Commit

Permalink
TemporaryDirectories 초기화 식 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
rkttu committed Dec 20, 2023
1 parent 7752890 commit ec2239c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TableCloth/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public List<CatalogInternetService> SelectedServices
set => SetProperty(ref _selectedServices, value);
}

public List<string> TemporaryDirectories { get; } = [];
public List<string> TemporaryDirectories { get; } = new List<string>();

public string? CurrentDirectory { get; set; }

Expand Down

0 comments on commit ec2239c

Please sign in to comment.