Skip to content

Commit

Permalink
Merge pull request #848 from ita-social-projects/feature-reporting-link
Browse files Browse the repository at this point in the history
art-galery-load-fix
  • Loading branch information
MementoMorj authored Sep 27, 2023
2 parents f3cd33c + cef838a commit e6d5374
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/features/StreetcodePage/Streetcode.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import MapBlock from './MapBlock/MapBlock.component';
import PartnersComponent from './PartnersBlock/Partners.component';
import RelatedFiguresComponent from './RelatedFiguresBlock/RelatedFigures.component';
import TimelineBlockComponent from './TimelineBlock/TimelineBlock.component';
import React from 'react';

const StreetcodeContent = () => {
const { streetcodeStore } = useStreetcodeDataContext();
Expand Down Expand Up @@ -111,7 +112,11 @@ const StreetcodeContent = () => {
<TextBlockComponent />
<InterestingFactsComponent />
<TimelineBlockComponent />
<ArtGalleryBlockComponent />
{pageLoadercontext.isPageLoaded ? (
<ArtGalleryBlockComponent />
) : (
<React.Fragment />
)}
<RelatedFiguresComponent setActiveTagId={setActiveTagId} />
<SourcesBlock />
</ProgressBar>
Expand Down

0 comments on commit e6d5374

Please sign in to comment.