We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0b5a67 commit a7e393cCopy full SHA for a7e393c
src/app/private/search/index.tsx
@@ -207,7 +207,7 @@ export default function SearchScreen() {
207
router.push(`/private/profile/${item.id}`);
208
}}
209
>
210
- <Text style={tw`text-dark font-semibold text-sm`}>View</Text>
+ <Text style={tw`text-black font-semibold text-sm`}>View</Text>
211
</PressableHaptics>
212
) : (
213
<PressableHaptics
@@ -226,7 +226,7 @@ export default function SearchScreen() {
226
color={isFollowing ? '#000' : '#fff'}
227
/>
228
229
- <Text style={tw`${isFollowing ? 'text-dark' : 'text-white'} font-semibold text-sm`}>
+ <Text style={tw`${isFollowing ? 'text-black' : 'text-white'} font-semibold text-sm`}>
230
{isFollowing ? 'Following' : 'Follow'}
231
</Text>
232
)}
0 commit comments