Commit afc3be92 authored by Igor Stuev's avatar Igor Stuev Committed by GitHub

Merge pull request #1844 from blockscout/hide-loading-tab-menu

hide tabs menu when loading
parents d2527871 13c3a131
......@@ -80,6 +80,10 @@ const AdaptiveTabsList = (props: Props) => {
>
{ tabsList.map((tab, index) => {
if (!tab.id) {
if (props.isLoading) {
return null;
}
return (
<TabsMenu
key="menu"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment