diff --git a/Elwig/Helpers/Export/Ods.cs b/Elwig/Helpers/Export/Ods.cs
index e8cd93a..be056b1 100644
--- a/Elwig/Helpers/Export/Ods.cs
+++ b/Elwig/Helpers/Export/Ods.cs
@@ -93,12 +93,7 @@ namespace Elwig.Helpers.Export {
""");
for (int i = 1; i <= 100; i++) {
- await Content.WriteAsync($"""
-
-
-
-
- """);
+ await Content.WriteAsync($" \r\n");
}
await Content.WriteAsync("""
@@ -226,7 +221,7 @@ namespace Elwig.Helpers.Export {
await Content.WriteAsync(" \r\n");
foreach (var (data, units) in row.Zip(colUnits)) {
if (data is Array a) {
- await Content.WriteAsync(i < a.Length ? FormatCell(a.GetValue(i), units: units) : $" \r\n");
+ await Content.WriteAsync(i < a.Length ? FormatCell(a.GetValue(i), units: units) : $" \r\n");
} else {
await Content.WriteAsync(FormatCell(data, rowSpan: i == 0 ? rowNum : 1, isCovered: i > 0, units: units));
}