Fix crash on middle click (and others?)

This commit is contained in:
Thomas Zarebczan 2022-05-10 13:25:47 -04:00
parent 8874008245
commit 71894daf49
No known key found for this signature in database
GPG key ID: 767B41E1BB7346F2

View file

@ -79,7 +79,7 @@ export const selectHomepageMeme = (state) => {
return meme; return meme;
} }
} }
return homepages['en'].meme || {}; return homepages ? homepages['en'].meme || {} : {};
}; };
export const selectInRegionByCode = (state, code) => { export const selectInRegionByCode = (state, code) => {