Add back in missing titleStyle in Select.tsx

This commit is contained in:
Brandon Presley 2023-07-15 15:02:29 +12:00
parent c3a3e33e25
commit adc2d05b2c
1 changed files with 1 additions and 0 deletions

View File

@ -61,6 +61,7 @@ function Select({
>
{items.map((item) => (
<Menu.Item
titleStyle={{color: item.color}}
key={item.value}
title={item.label}
onPress={() => handlePress(item.value)}