Skip to content

Commit

Permalink
fix: OPTIC-712: Remove warnings in the app related to injection occur…
Browse files Browse the repository at this point in the history
… before observer
  • Loading branch information
Raul Martin committed May 3, 2024
1 parent ecea57a commit 2f7ef50
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@ const SelectedRegion: FC<{ region: any }> = observer(({ region }) => {
return <RegionItem region={region} mainDetails={RegionDetailsMain} metaDetails={RegionDetailsMeta} />;
});

export const Comments = observer(CommentsTab);
export const History = observer(HistoryTab);
export const Relations = observer(RelationsTab);
export const Info = observer(InfoTab);
export const Comments = CommentsTab;
export const History = HistoryTab;
export const Relations = RelationsTab;
export const Info = InfoTab;
export const Details = observer(DetailsComponent);
export const DetailsPanel = observer(DetailsPanelComponent);

0 comments on commit 2f7ef50

Please sign in to comment.