Skip to content

Commit d1b0dce

Browse files
authored
AppBar add appear false back (#34)
* Add appear false back * bump package.json version
1 parent 590cd22 commit d1b0dce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-storefront",
3-
"version": "7.2.1",
3+
"version": "7.2.2",
44
"description": "Build and deploy e-commerce progressive web apps (PWAs) in record time.",
55
"module": "./index.js",
66
"license": "Apache-2.0",

src/AppBar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export default function AppBar({ children, style, fixed, offlineWarning, classes
6767

6868
if (!fixed) {
6969
appBar = (
70-
<Slide in={!trigger}>
70+
<Slide appear={false} in={!trigger}>
7171
{appBar}
7272
</Slide>
7373
)

0 commit comments

Comments
 (0)