Skip to content

Commit 62b68d9

Browse files
authored
chore(app): add workspace paths to tsconfig (#300)
1 parent bd3a1aa commit 62b68d9

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

packages/app/src/components/ActivityLog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ const styles = {
7373
},
7474
logProfileDetails: { flex: 1, flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between' },
7575
logDate: { alignItems: 'flex-end' },
76-
};
76+
} as const;
7777
export default ActivityLog;

packages/app/src/components/BannerPool.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ const styles = {
8484
width: '100%',
8585
height: '100%',
8686
},
87-
};
87+
} as const;
8888

8989
export default BannerPool;

packages/app/src/components/CollectiveHomeCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,6 @@ const styles = {
9292
shadowRadius: 15,
9393
elevation: 24,
9494
},
95-
};
95+
} as const;
9696

9797
export default CollectiveHomeCard;

packages/app/src/components/DonorsList/DonorsList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ const styles = {
4242
default: 'auto',
4343
}),
4444
},
45-
};
45+
} as const;
4646

4747
export default DonorsList;

packages/app/src/components/DonorsList/DonorsListItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@ const styles = {
102102
currency: {
103103
fontWeight: 700,
104104
},
105-
};
105+
} as const;

packages/app/src/components/Dropdown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,6 @@ const styles = {
114114
color: 'goodPurple.500',
115115
textAlign: 'center',
116116
},
117-
};
117+
} as const;
118118

119119
export default Dropdown;

packages/app/src/components/FlowingDonationsRowItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,6 @@ const styles = {
110110
color: 'goodGrey.25',
111111
...InterRegular,
112112
},
113-
};
113+
} as const;
114114

115115
export default FlowingDonationsRowItem;

packages/app/src/components/Header/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,6 @@ const styles = {
113113
justifyContent: 'space-between',
114114
flexDirection: 'row',
115115
},
116-
};
116+
} as const;
117117

118118
export default Header;

packages/app/src/components/ImpactButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,6 @@ const styles = {
6969
height: 24,
7070
color: 'black',
7171
},
72-
};
72+
} as const;
7373

7474
export default ImpactButton;

packages/app/src/components/Layout/Breadcrumb.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ const styles = {
5252
transform: [{ rotate: '180deg' }],
5353
tintColor: 'goodPurple.500',
5454
},
55-
};
55+
} as const;
5656

5757
export default Breadcrumb;

0 commit comments

Comments
 (0)