Commit f32d916
committed
fix: update ui.rs Config::load call site for new tuple return type
Config::load now returns Result<(Self, Option<String>)> — the Ok arm
in load_form's match was still destructuring as Ok(c). Updated to
Ok((c, _)) to discard the migration warning (the UI has no logging
path for it at load time).1 parent b598368 commit f32d916
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
316 | 316 | | |
317 | 317 | | |
318 | 318 | | |
319 | | - | |
| 319 | + | |
320 | 320 | | |
321 | 321 | | |
322 | 322 | | |
| |||
0 commit comments