Fix Flipper lints #10

Summary:
Grey -> gray. "Cancelled" seems quite common in APIs though, so I disabled that.
A few promise cleanups

Reviewed By: aigoncharov

Differential Revision: D31323610

fbshipit-source-id: c8863d995936f451c24eb408fe5c26677187f089
This commit is contained in:
Pascal Hartig
2021-10-01 08:07:16 -07:00
committed by Facebook GitHub Bot
parent fe3eda024b
commit 4aa7439fbf
8 changed files with 19 additions and 15 deletions

View File

@@ -37,7 +37,7 @@ const ScreenshotContainer = styled.div({
width: 200,
minWidth: 200,
overflow: 'hidden',
borderLeft: `1px ${colors.blueGreyTint90} solid`,
borderLeft: `1px ${colors.blueGrayTint90} solid`,
position: 'relative',
height: '100%',
borderRadius: 10,
@@ -61,7 +61,7 @@ const NavigationDataContainer = styled.div({
const Footer = styled.div({
width: '100%',
padding: '10px',
borderTop: `1px ${colors.blueGreyTint90} solid`,
borderTop: `1px ${colors.blueGrayTint90} solid`,
display: 'flex',
alignItems: 'center',
});
@@ -92,7 +92,7 @@ const Header = styled.div({
userSelect: 'text',
cursor: 'text',
padding: 10,
borderBottom: `1px ${colors.blueGreyTint90} solid`,
borderBottom: `1px ${colors.blueGrayTint90} solid`,
display: 'flex',
});