Skip to content

Commit 4f4f623

Browse files
committed
fix: channel list background color
1 parent a69a7e7 commit 4f4f623

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

package/src/components/ChannelList/ChannelListView.tsx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,17 +211,23 @@ ChannelListView.displayName = 'ChannelListView{channelListView}';
211211
const useStyles = () => {
212212
const {
213213
theme: {
214+
semantics,
214215
channelListView: { flatList, flatListContent },
215216
},
216217
} = useTheme();
217218
return useMemo(() => {
218219
return StyleSheet.create({
219-
flatList: { flex: 1, ...flatList },
220+
flatList: {
221+
flex: 1,
222+
backgroundColor: semantics.backgroundCoreApp,
223+
...flatList,
224+
},
220225
flatListContentContainer: {
221226
flexGrow: 1,
227+
backgroundColor: semantics.backgroundCoreApp,
222228
...flatListContent,
223229
},
224230
statusIndicator: { left: 0, position: 'absolute', right: 0, top: 0 },
225231
});
226-
}, [flatList, flatListContent]);
232+
}, [flatList, flatListContent, semantics]);
227233
};

0 commit comments

Comments
 (0)