mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 18:08:06 +01:00
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());
|
|
};
|