Added keys to layout items in ui/index

fixes the error displaying in console for missing keys
This commit is contained in:
mgabdev 2019-07-19 15:33:27 -04:00
parent 0ba57e695a
commit 57bc960da0

View File

@ -111,8 +111,8 @@ const LAYOUT = {
},
DEFAULT: {
LEFT: [
<WhoToFollowPanel />,
<LinkFooter />,
<WhoToFollowPanel key='0' />,
<LinkFooter key='1' />,
],
RIGHT: [
// <TrendsPanel />,
@ -122,9 +122,9 @@ const LAYOUT = {
TOP: null,
LEFT: null,
RIGHT: [
<WhoToFollowPanel />,
<WhoToFollowPanel key='0' />,
// <TrendsPanel />,
<LinkFooter />,
<LinkFooter key='1' />,
],
},
};