diff --git a/src/client/pages/my-settings/reaction.vue b/src/client/pages/my-settings/reaction.vue
index b2df3f0231..bb9eab1e73 100644
--- a/src/client/pages/my-settings/reaction.vue
+++ b/src/client/pages/my-settings/reaction.vue
@@ -23,6 +23,7 @@ import MkButton from '../../components/ui/button.vue';
 import MkReactionPicker from '../../components/reaction-picker.vue';
 import i18n from '../../i18n';
 import { emojiRegexWithCustom } from '../../../misc/emoji-regex';
+import { defaultSettings } from '../../store';
 
 export default Vue.extend({
 	i18n,
@@ -70,7 +71,7 @@ export default Vue.extend({
 		},
 
 		setDefault() {
-			this.reactions = '👍❤😆🤔😮🎉💢😥😇🍮';
+			this.reactions = defaultSettings.reactions;
 		},
 
 		async chooseEmoji(ev) {
diff --git a/src/client/store.ts b/src/client/store.ts
index 0b596ba415..3635e21f1c 100644
--- a/src/client/store.ts
+++ b/src/client/store.ts
@@ -3,7 +3,7 @@ import createPersistedState from 'vuex-persistedstate';
 import * as nestedProperty from 'nested-property';
 import { apiUrl } from './config';
 
-const defaultSettings = {
+export const defaultSettings = {
 	tutorial: 0,
 	keepCw: false,
 	showFullAcct: false,