Skip to content

Commit ea0f274

Browse files
committed
repair the order of useResponsiveState
1 parent ba22196 commit ea0f274

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/use-responsive-state/use-responsive-state.test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ it("getSize", () => {
99
expect(sizeDefault).to.equal("default");
1010

1111
const cases = [
12-
{
13-
value: "hd",
14-
media: "(min-width: 1080px)",
15-
},
1612
{
1713
value: "fullhd",
1814
media: "(min-width: 1980px)",
1915
},
16+
{
17+
value: "hd",
18+
media: "(min-width: 1080px)",
19+
},
2020
];
2121

2222
sizes.map(({ match, value }, index) => {

0 commit comments

Comments
 (0)