diff --git a/.changeset/session-actions-archive-first.md b/.changeset/session-actions-archive-first.md
new file mode 100644
index 0000000..d534ffb
--- /dev/null
+++ b/.changeset/session-actions-archive-first.md
@@ -0,0 +1,5 @@
+---
+"@jmfederico/pi-web": patch
+---
+
+Move reload to the end of the session action menu.
diff --git a/src/client/src/components/SessionList.ts b/src/client/src/components/SessionList.ts
index d9229ac..e2c156d 100644
--- a/src/client/src/components/SessionList.ts
+++ b/src/client/src/components/SessionList.ts
@@ -228,10 +228,10 @@ export class SessionList extends LitElement implements KeyboardNavigableSection
`
: html`
- ${this.canReload ? html`` : null}
- ${session.parentSessionPath !== undefined ? html`` : null}
${descendantCount > 0 ? html`` : null}
+ ${session.parentSessionPath !== undefined ? html`` : null}
+ ${this.canReload ? html`` : null}
`}
` : null}