9cb26bb56b
* Prepare to load onboarding as a full page * Update the first-time introduction * Improve responsive design * Replace speech bubble with logo * Increase text size and reword first paragraph
8 lines
268 B
JavaScript
8 lines
268 B
JavaScript
import { changeSetting, saveSettings } from './settings';
|
|
|
|
export const INTRODUCTION_VERSION = 20181216044202;
|
|
|
|
export const closeOnboarding = () => dispatch => {
|
|
dispatch(changeSetting(['introductionVersion'], INTRODUCTION_VERSION));
|
|
dispatch(saveSettings());
|
|
};
|