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