Skip to content

Commit

Permalink
GH-67 Fix no-unexpected-multiline warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jedster1111 committed Nov 27, 2019
1 parent 95e160b commit 31b5b33
Show file tree
Hide file tree
Showing 3 changed files with 1,966 additions and 1,955 deletions.
1 change: 0 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"eslint.workingDirectories": ["./bananagram-frontend"],
"eslint.options": { "configFile": ".eslintrc.json" },
"eslint.validate": [
"javascript",
"javascriptreact",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ interface GridSquareProps {
) => void;
}

const StyledGridSquare = styled.div<{
interface StyledGridSquareProps {
isSelected: boolean;
isPiece: boolean;
}>`
}

const StyledGridSquare = styled.div<StyledGridSquareProps>`
flex: 1;
display: flex;
Expand Down
Loading

0 comments on commit 31b5b33

Please sign in to comment.