Skip to content

Commit 3cb2721

Browse files
style: linting ran again
1 parent d9b3691 commit 3cb2721

File tree

4 files changed

+16
-39
lines changed

4 files changed

+16
-39
lines changed

packages/app-degree-pages/src/components/ListingPage/components/Filters/components/index.jsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,11 @@ const SelectFormGroup = ({
3737
value={selected}
3838
>
3939
{options?.map(option => (
40-
<option key={option.id} id={`${option.value}-${option.id}`} value={option.value}>
40+
<option
41+
key={option.id}
42+
id={`${option.value}-${option.id}`}
43+
value={option.value}
44+
>
4145
{option.text}
4246
</option>
4347
))}

packages/static-site/src/pages/DataLayerGuide.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const bookmarklet = `javascript:(${watchDataLayer
1313
.replace(/\s+/g, " ")})();`;
1414

1515
const gtmCodes = {
16-
universal: "GTM-KDWN8Z"
16+
universal: "GTM-KDWN8Z",
1717
};
1818

1919
const GtmCodeExample: FC<{ gtmCode: string }> = ({ gtmCode }) => {

packages/unity-bootstrap-theme/stories/organisms/global-footer/global-footer.templates.js

Lines changed: 9 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,7 @@ export const GlobalElementsOnly = () => (
135135
>
136136
Privacy
137137
</a>
138-
<button
139-
type="button"
140-
id="manualConsentoptout"
141-
>
138+
<button type="button" id="manualConsentoptout">
142139
Manage my privacy settings
143140
</button>
144141
</nav>
@@ -371,10 +368,7 @@ export const ZeroColumns = () => (
371368
>
372369
Privacy
373370
</a>
374-
<button
375-
type="button"
376-
id="manualConsentoptout"
377-
>
371+
<button type="button" id="manualConsentoptout">
378372
Manage my privacy settings
379373
</button>
380374
</nav>
@@ -627,10 +621,7 @@ export const OneColumn = () => (
627621
>
628622
Privacy
629623
</a>
630-
<button
631-
type="button"
632-
id="manualConsentoptout"
633-
>
624+
<button type="button" id="manualConsentoptout">
634625
Manage my privacy settings
635626
</button>
636627
</nav>
@@ -794,10 +785,7 @@ export const OneColumnNoLogoOrSocial = () => (
794785
>
795786
Privacy
796787
</a>
797-
<button
798-
type="button"
799-
id="manualConsentoptout"
800-
>
788+
<button type="button" id="manualConsentoptout">
801789
Manage my privacy settings
802790
</button>
803791
</nav>
@@ -1095,10 +1083,7 @@ export const TwoColumns = () => (
10951083
>
10961084
Privacy
10971085
</a>
1098-
<button
1099-
type="button"
1100-
id="manualConsentoptout"
1101-
>
1086+
<button type="button" id="manualConsentoptout">
11021087
Manage my privacy settings
11031088
</button>
11041089
</nav>
@@ -1444,10 +1429,7 @@ export const ThreeColumns = () => (
14441429
>
14451430
Privacy
14461431
</a>
1447-
<button
1448-
type="button"
1449-
id="manualConsentoptout"
1450-
>
1432+
<button type="button" id="manualConsentoptout">
14511433
Manage my privacy settings
14521434
</button>
14531435
</nav>
@@ -1841,10 +1823,7 @@ export const FourColumns = () => (
18411823
>
18421824
Privacy
18431825
</a>
1844-
<button
1845-
type="button"
1846-
id="manualConsentoptout"
1847-
>
1826+
<button type="button" id="manualConsentoptout">
18481827
Manage my privacy settings
18491828
</button>
18501829
</nav>
@@ -2286,10 +2265,7 @@ export const FiveColumns = () => (
22862265
>
22872266
Privacy
22882267
</a>
2289-
<button
2290-
type="button"
2291-
id="manualConsentoptout"
2292-
>
2268+
<button type="button" id="manualConsentoptout">
22932269
Manage my privacy settings
22942270
</button>
22952271
</nav>
@@ -2774,10 +2750,7 @@ export const SixColumns = () => (
27742750
>
27752751
Privacy
27762752
</a>
2777-
<button
2778-
type="button"
2779-
id="manualConsentoptout"
2780-
>
2753+
<button type="button" id="manualConsentoptout">
27812754
Manage my privacy settings
27822755
</button>
27832756
</nav>

packages/unity-react-core/src/components/RankingCard/RankingCard.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ const InfoLayerWrapper = ({ imageSize, body, heading, readMoreLink }) => {
8181
{isSmall ? (
8282
<span className="visually-hidden">{heading}</span>
8383
) : (
84-
<h4 >{heading}</h4>
84+
<h4>{heading}</h4>
8585
)}
8686
<i className="fas fa-chevron-up" />
8787
</button>

0 commit comments

Comments
 (0)