diff --git a/packages/client/src/pages/welcome.entrance.a.vue b/packages/client/src/pages/welcome.entrance.a.vue
index c5f57d5808..49e560b4d6 100644
--- a/packages/client/src/pages/welcome.entrance.a.vue
+++ b/packages/client/src/pages/welcome.entrance.a.vue
@@ -7,17 +7,12 @@
{
- window.open(instance.tosUrl, "_blank");
- },
- } : null,
+ instance.tosUrl
+ ? {
+ text: i18n.ts.tos,
+ icon: "ph-scroll ph-bold ph-lg",
+ action: () => {
+ window.open(instance.tosUrl, "_blank");
+ },
+ }
+ : null,
],
ev.currentTarget ?? ev.target,
);
diff --git a/packages/client/src/store.ts b/packages/client/src/store.ts
index 9a545415e9..8d8e8b4ffb 100644
--- a/packages/client/src/store.ts
+++ b/packages/client/src/store.ts
@@ -17,6 +17,20 @@ const menuOptions = [
"search",
];
+export const defaultReactions = [
+ "โญ",
+ "โค๏ธ",
+ "๐",
+ "๐ค",
+ "๐ฎ",
+ "๐",
+ "๐ข",
+ "๐ฅ",
+ "๐",
+ "๐ฅด",
+ "๐ฎ",
+];
+
// TODO: ใใใใใใกใใกwhereใจใdefaultใจใใใญใผใไปใใชใใใใใชใใฎๅ้ทใชใฎใงใชใใจใใใ(ใใ ๅๅฎ็พฉใ้ขๅใซใชใใใ)
// ใใจใ็พ่กใฎๅฎ็พฉใฎไปๆนใชใใwhereใไฝใงใใใใซ้ขใใใใญใผๅใฎ้่คไธๅฏใใจใใๅถ็ดใไปใใใใใกใชใใใใใใใใใฎใกใชใใใๅผใ็ถใๆนๆณใ่ใใชใใจใใใชใ
export const defaultStore = markRaw(
@@ -83,19 +97,7 @@ export const defaultStore = markRaw(
},
reactions: {
where: "account",
- default: [
- "โญ",
- "โค๏ธ",
- "๐",
- "๐ค",
- "๐ฎ",
- "๐",
- "๐ข",
- "๐ฅ",
- "๐",
- "๐ฅด",
- "๐ฎ",
- ],
+ default: defaultReactions,
},
mutedWords: {
where: "account",