Skip to content

Commit 19cdbbe

Browse files
committed
refactor: Cap chunk size options
1 parent 0ec93eb commit 19cdbbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FileBrowserClient/FileBrowserClient/ContentView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ struct ContentView: View {
127127
Text("Chunk Size (MB)")
128128
Spacer()
129129
Picker(selection: $chunkSize, label: Text("\(chunkSize)")) {
130-
ForEach([1, 5, 10, 20, 25, 50, 100], id: \.self) { size in
130+
ForEach([1, 2, 5, 10, 20], id: \.self) { size in
131131
Text("\(size)").tag(size)
132132
}
133133
}

0 commit comments

Comments
 (0)