diff --git a/src/app/browser/window/tab/item/identity/gemini.rs b/src/app/browser/window/tab/item/identity/gemini.rs index 390de4cf..5f9ad71e 100644 --- a/src/app/browser/window/tab/item/identity/gemini.rs +++ b/src/app/browser/window/tab/item/identity/gemini.rs @@ -29,13 +29,6 @@ impl Gemini { // Set first record selected by default let mut selected: u32 = 0; - // Add new identity option - widget.form.list.append( - Value::GENERATE_NEW_AUTH, - "Create new", - "Generate long-term certificate", - ); - // Add guest option widget.form.list.append( Value::USE_GUEST_SESSION, @@ -43,6 +36,13 @@ impl Gemini { "No identity for this request", ); + // Add new identity option + widget.form.list.append( + Value::GENERATE_NEW_AUTH, + "Create new", + "Generate long-term certificate", + ); + // Collect additional options from database let mut i = 1; // start from 2'th match profile.identity.gemini.database.records() {