Skip to content

Commit

Permalink
eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnau Zapata Delgado authored and Arnau Zapata Delgado committed Jul 13, 2023
1 parent 43f0bf9 commit e133c8c
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 30 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"moment": "^2.29.0",
"next": "^13.4.9",
"react": "^18.2.0",
"react-dom": "^16.13.1",
"react-dom": "^18.2.0",
"react-notifications": "^1.7.4",
"styled-components": "^5.1.0",
"styled-media-query": "^2.1.2",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from "react";
import styled from "styled-components";
import { pStyled } from "..";
import styled from 'styled-components'

import { pStyled } from '..'

const DescriptionText = styled(pStyled)`
font-family: "Muli", sans-serif;
`;
font-family: 'Muli', sans-serif;
`

export default DescriptionText;
export default DescriptionText
13 changes: 7 additions & 6 deletions src/components/atomic_components/Text/variants/PageTitle.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import styled from "styled-components";
import { H1Styled } from "..";
import styled from 'styled-components'

import { H1Styled } from '..'

const PageTitle = styled(H1Styled)`
font-family: Montserrat;
font-weight: bold;
`;
font-family: Montserrat;
font-weight: bold;
`

export default PageTitle;
export default PageTitle
9 changes: 4 additions & 5 deletions src/components/atomic_components/Text/variants/Title.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import React from "react";
import styled from "styled-components";
import { H2Styled } from "..";
import styled from 'styled-components'

import { H2Styled } from '..'

const Title = styled(H2Styled)`
font-family: Montserrat;
font-weight: bold;
`;
`

export default Title;
export default Title
21 changes: 9 additions & 12 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9815,15 +9815,13 @@ rc-virtual-list@^3.2.0, rc-virtual-list@^3.5.1:
rc-resize-observer "^1.0.0"
rc-util "^5.15.0"

react-dom@^16.13.1:
version "16.14.0"
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.14.0.tgz#7ad838ec29a777fb3c75c3a190f661cf92ab8b89"
integrity sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==
react-dom@^18.2.0:
version "18.2.0"
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d"
integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==
dependencies:
loose-envify "^1.1.0"
object-assign "^4.1.1"
prop-types "^15.6.2"
scheduler "^0.19.1"
scheduler "^0.23.0"

react-is@^16.12.0, react-is@^16.13.1, react-is@^16.7.0:
version "16.13.1"
Expand Down Expand Up @@ -10340,13 +10338,12 @@ sc-istanbul@^0.4.5:
which "^1.1.1"
wordwrap "^1.0.0"

scheduler@^0.19.1:
version "0.19.1"
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196"
integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==
scheduler@^0.23.0:
version "0.23.0"
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe"
integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==
dependencies:
loose-envify "^1.1.0"
object-assign "^4.1.1"

scroll-into-view-if-needed@^2.2.25:
version "2.2.31"
Expand Down

0 comments on commit e133c8c

Please sign in to comment.