Skip to content

Commit

Permalink
chore: update snapshot in link
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhedonia committed Feb 21, 2018
1 parent eec7028 commit ddf56ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ exports[`Link test on ios Link doesnt change inner text styles 1`] = `
accessibilityTraits={undefined}
accessible={true}
collapsable={undefined}
hasTVPreferredFocus={undefined}
hitSlop={undefined}
isTVSelectable={true}
nativeID={undefined}
Expand Down Expand Up @@ -42,6 +43,7 @@ exports[`Link test on ios Link renders correctly 1`] = `
accessibilityTraits={undefined}
accessible={true}
collapsable={undefined}
hasTVPreferredFocus={undefined}
hitSlop={undefined}
isTVSelectable={true}
nativeID={undefined}
Expand Down
5 changes: 4 additions & 1 deletion packages/slice/slice.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ const createItems = noOfItems =>
const { backgroundColor, key } = colour;
if (key > noOfItems) return false;
return (
<View key={`item${key}`} style={[moduleStyle.item, { backgroundColor }]} />
<View
key={`item${key}`}
style={[moduleStyle.item, { backgroundColor }]}
/>
);
})
.filter(item => item !== false);
Expand Down

0 comments on commit ddf56ed

Please sign in to comment.