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 d08fa5a commit 159a7c1Copy full SHA for 159a7c1
1 file changed
Generator/WebsiteBuilder.cs
@@ -2,7 +2,6 @@
2
using Generator.DTO.Warnings;
3
using Microsoft.Extensions.Configuration;
4
using Newtonsoft.Json;
5
-using System.Collections.Generic;
6
using System.Text;
7
8
namespace Generator;
@@ -64,7 +63,7 @@ internal void AddData()
64
63
sb.AppendLine(" },");
65
}
66
67
- sb.AppendLine("]");
+ sb.AppendLine("] as const;");
68
69
// WARNINGS
70
sb.AppendLine("");
@@ -73,7 +72,7 @@ internal void AddData()
73
72
{
74
sb.AppendLine($" {JsonConvert.SerializeObject(warning)},");
75
76
77
78
// SOLUTION COMPONENTS (for insights)
79
0 commit comments