From 5448ed643e67b10d19c234698886590f9c1ba9f1 Mon Sep 17 00:00:00 2001
From: syuilo <Syuilotan@yahoo.co.jp>
Date: Fri, 4 Mar 2022 16:26:21 +0900
Subject: [PATCH] tweak client

---
 packages/client/src/components/chart.vue | 8 ++++----
 packages/client/src/store.ts             | 5 ++---
 2 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/packages/client/src/components/chart.vue b/packages/client/src/components/chart.vue
index 3787c5f066..dc1ea2b2d8 100644
--- a/packages/client/src/components/chart.vue
+++ b/packages/client/src/components/chart.vue
@@ -274,7 +274,7 @@ export default defineComponent({
 						y: {
 							position: 'left',
 							stacked: props.stacked,
-							suggestedMax: 100,
+							suggestedMax: 50,
 							grid: {
 								color: gridColor,
 								borderColor: 'rgb(0, 0, 0, 0)',
@@ -390,17 +390,17 @@ export default defineComponent({
 					color: colors.red,
 				}, {
 					name: 'Pub & Sub',
-					type: 'area',
+					type: 'line',
 					data: format(raw.pubsub),
 					color: colors.lime,
 				}, {
 					name: 'Pub',
-					type: 'area',
+					type: 'line',
 					data: format(raw.pub),
 					color: colors.purple,
 				}, {
 					name: 'Sub',
-					type: 'area',
+					type: 'line',
 					data: format(raw.sub),
 					color: colors.orange,
 				}],
diff --git a/packages/client/src/store.ts b/packages/client/src/store.ts
index e6a2f42906..b9800ec607 100644
--- a/packages/client/src/store.ts
+++ b/packages/client/src/store.ts
@@ -68,11 +68,10 @@ export const defaultStore = markRaw(new Storage('base', {
 		where: 'deviceAccount',
 		default: [
 			'notifications',
-			'messaging',
+			'favorites',
 			'drive',
 			'followRequests',
 			'-',
-			'gallery',
 			'featured',
 			'explore',
 			'announcements',
@@ -192,7 +191,7 @@ export const defaultStore = markRaw(new Storage('base', {
 	},
 	reactionPickerHeight: {
 		where: 'device',
-		default: 1
+		default: 2
 	},
 	reactionPickerUseDrawerForMobile: {
 		where: 'device',