diff --git a/CHANGELOG.md b/CHANGELOG.md
index c3c922f77..7340dddfc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,7 @@
* Tangletrees can now be coloured by genotype (previously such a colouring would only work for the LHS tree). This requires the genome annotation (in the dataset JSON) to be identical across both datasets. This can be especially useful when comparing trees generated from the same sequences or a similar set of sequences in order to understand the differences in tree structure. ([#1785](https://github.com/nextstrain/auspice/pull/1783))
* Bugfix: The legend entries shown for a tangletree may not have shown values only observed in the RHS tree when the dataset was first loaded. ([#1785](https://github.com/nextstrain/auspice/pull/1783))
* Bugfix: Multiple trees ("tanglegrams") now render correctly in Safari. ([#1786](https://github.com/nextstrain/auspice/pull/1786))
+* Bugfix: The [onlyPanels](https://docs.nextstrain.org/projects/auspice/en/stable/advanced-functionality/view-settings.html#url-query-options) URL query now hides all parts of the footer, as intended. ([#1787](https://github.com/nextstrain/auspice/pull/1787))
## version 2.54.1 - 2024/06/10
diff --git a/src/components/main/index.js b/src/components/main/index.js
index 5b5d7debd..87fce0374 100644
--- a/src/components/main/index.js
+++ b/src/components/main/index.js
@@ -204,7 +204,7 @@ class Main extends React.Component {
null
}
{this.props.displayNarrative || this.props.showOnlyPanels ? null : }
- {this.props.displayNarrative ? null : }
+ {this.props.displayNarrative || this.props.showOnlyPanels ? null : }
{this.props.displayNarrative && this.props.panelsToDisplay.includes("MainDisplayMarkdown") ?
:
null