Skip to content

Commit

Permalink
make button black
Browse files Browse the repository at this point in the history
  • Loading branch information
wbglaeser committed Jun 17, 2024
1 parent 1ae2b9c commit d312e21
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/screens/eligibilty-overview/EligibilityOverviewScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ const EligibilityOverviewScreen = () => {
{
eligibilityData ? (
<>
<EligibilityOverviewList items={eligibilityData.eligible} eligble={'eligible'} />
<EligibilityOverviewList items={eligibilityData.nonEligible} eligble={'non-eligible'} />
<EligibilityOverviewList items={eligibilityData.missingData} eligble={'indeterminate'} />
<EligibilityOverviewList items={eligibilityData.eligible} eligible={'eligible'} />
<EligibilityOverviewList items={eligibilityData.nonEligible} eligible={'non-eligible'} />
<EligibilityOverviewList items={eligibilityData.missingData} eligible={'indeterminate'} />
</>
) : null
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ const EligibilityOverviewItem = ({item, eligible}) => {
</VStack>
</HStack>
<VStack gap={0} alignItems={'flex-start'}>
<IconButton onClick={toggleDescription} size="small">
{showDescription ? <Remove/> : <Add/>}
<IconButton onClick={toggleDescription} size="small" >
{showDescription ? <Remove sx={{color: 'black'}}/> : <Add sx={{color: 'black'}}/>}
</IconButton>
</VStack>
</HStack>
Expand Down
2 changes: 1 addition & 1 deletion src/storage/zustand.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { create } from 'zustand';

export const useUserStore = create((set) => ({
activeUserId: 'kinderzuschlag-user-profile',
activeUserId: 'ff:kinderzuschlag-user-profile',
updateUserId: (newUserId) => {
console.log('STATE UPDATE: We are switching user');
set((state) => ({ activeUserId: newUserId }));
Expand Down

0 comments on commit d312e21

Please sign in to comment.