File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 18
18
}
19
19
}
20
20
},
21
- " High Priority : %lld" : {
21
+ " High: %lld" : {
22
22
23
23
},
24
24
" Low Priority - %lld" : {
38
38
}
39
39
}
40
40
},
41
- " Low Priority : %lld" : {
41
+ " Low: %lld" : {
42
42
43
43
},
44
44
" Med Priority - %lld" : {
57
57
}
58
58
}
59
59
}
60
- },
61
- " Med Priority: %lld" : {
62
-
63
60
},
64
61
" No Priority - %lld" : {
65
62
"extractionState" : "stale",
78
75
}
79
76
}
80
77
},
81
- " No Priority : %lld" : {
78
+ " None : %lld" : {
82
79
83
80
},
84
81
"- %llu sats" : {
726
723
}
727
724
}
728
725
}
726
+ },
727
+ "Med: %lld" : {
728
+
729
729
},
730
730
"Navigation Title" : {
731
731
"extractionState" : "stale",
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ struct FeeView: View {
34
34
variableValue: 0.0
35
35
)
36
36
Text (
37
- " No Priority: \( viewModel. recommendedFees? . minimumFee ?? 1 ) "
37
+ " None • \( viewModel. recommendedFees? . minimumFee ?? 1 ) "
38
38
)
39
39
}
40
40
. tag ( 0 )
@@ -44,7 +44,7 @@ struct FeeView: View {
44
44
variableValue: 0.33
45
45
)
46
46
Text (
47
- " Low Priority: \( viewModel. recommendedFees? . hourFee ?? 1 ) "
47
+ " Low • \( viewModel. recommendedFees? . hourFee ?? 1 ) "
48
48
)
49
49
}
50
50
. tag ( 1 )
@@ -54,7 +54,7 @@ struct FeeView: View {
54
54
variableValue: 0.66
55
55
)
56
56
Text (
57
- " Med Priority: \( viewModel. recommendedFees? . halfHourFee ?? 1 ) "
57
+ " Medium • \( viewModel. recommendedFees? . halfHourFee ?? 1 ) "
58
58
)
59
59
}
60
60
. tag ( 2 )
@@ -64,7 +64,7 @@ struct FeeView: View {
64
64
variableValue: 1.0
65
65
)
66
66
Text (
67
- " High Priority: \( viewModel. recommendedFees? . fastestFee ?? 1 ) "
67
+ " High • \( viewModel. recommendedFees? . fastestFee ?? 1 ) "
68
68
)
69
69
}
70
70
. tag ( 3 )
@@ -108,7 +108,7 @@ struct FeeView: View {
108
108
109
109
}
110
110
. padding ( )
111
- . navigationTitle ( " Fees " )
111
+ . navigationTitle ( " Fee Priority " )
112
112
. task {
113
113
await viewModel. getFees ( )
114
114
}
You can’t perform that action at this time.
0 commit comments