Skip to content

Commit

Permalink
fix: invalid prop (style) in Resume test (#2526)
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekmaj authored Jan 19, 2024
1 parent 9e5842b commit 7563ee8
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions packages/renderer/tests/resume.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,6 @@ const expStyles = StyleSheet.create({
fontSize: 11,
fontFamily: 'Lato Italic',
},
detailContainer: {
flexDirection: 'row',
},
detailLeftColumn: {
flexDirection: 'column',
marginLeft: 10,
Expand Down Expand Up @@ -239,9 +236,7 @@ const ExperienceEntry = ({ company, details, position, date }) => {
</View>
<List>
{details.map((detail, i) => (
<Item key={i} style={expStyles.detailContainer}>
{detail}
</Item>
<Item key={i}>{detail}</Item>
))}
</List>
</View>
Expand Down

0 comments on commit 7563ee8

Please sign in to comment.