summaryrefslogtreecommitdiff
path: root/frontend/src/scenes/SplashScreen
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/scenes/SplashScreen')
-rw-r--r--frontend/src/scenes/SplashScreen/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/scenes/SplashScreen/index.js b/frontend/src/scenes/SplashScreen/index.js
index 5d9af862..1eee4e1b 100644
--- a/frontend/src/scenes/SplashScreen/index.js
+++ b/frontend/src/scenes/SplashScreen/index.js
@@ -34,7 +34,7 @@ class SplashScreenPresenter extends Component<SplashScreenProps> {
}
renderSubmit = () => (
- <Button className={Classes.MINIMAL} onClick={this.play} intent={Intent.PRIMARY} rightIconName="arrow-right" />
+ <Button className={Classes.MINIMAL} onClick={this.play} intent={Intent.PRIMARY} rightIcon="arrow-right" />
);
}
bgstack15