From cb4bb67d3a5e7d59b735b61fb0177523bf022361 Mon Sep 17 00:00:00 2001 From: masaki Date: Sun, 16 Mar 2025 13:39:52 +0900 Subject: [PATCH 1/3] add typo text --- lib/features/root_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/features/root_page.dart b/lib/features/root_page.dart index 0bdfec6..98eace4 100644 --- a/lib/features/root_page.dart +++ b/lib/features/root_page.dart @@ -55,7 +55,7 @@ class RootPage extends HookConsumerWidget { return isLoading.value // TODO(masaki): SizedBox へ戻す - ? const Text('miss-spellled text') // ローディング中は空のウィジェットを表示 + ? const Text('a typo text exemple') // ローディング中は空のウィジェットを表示 : NavigationFrame( // TODO(masaki): userIdを渡す // userId: userId, From 4e53f89eccc087c5ed35ba09525630790a019bd9 Mon Sep 17 00:00:00 2001 From: masaki Date: Sun, 16 Mar 2025 13:50:38 +0900 Subject: [PATCH 2/3] =?UTF-8?q?pr-agent.yaml=20=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit おそらく反映されていないプロンプトを削除 --- .github/workflows/pr-agent.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-agent.yaml b/.github/workflows/pr-agent.yaml index 0aed5d9..428bf3f 100644 --- a/.github/workflows/pr-agent.yaml +++ b/.github/workflows/pr-agent.yaml @@ -22,7 +22,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} PR_REVIEWER.EXTRA_INSTRUCTIONS: "Please use Japanese in descriptions." PR_DESCRIPTION.ADD_ORIGINAL_USER_DESCRIPTION: false - PR_DESCRIPTION.EXTRA_INSTRUCTIONS: "Please use Japanese in descriptions. Titles should have prefix of commitlint pattern such as `feat:`, `chore:`, `test:`, `fix:`, `ci:`, `docs:` etc" + PR_DESCRIPTION.EXTRA_INSTRUCTIONS: "Please use Japanese in descriptions." PR_CODE_SUGGESTIONS.EXTRA_INSTRUCTIONS: "Please use Japanese in descriptions." PR_UPDATE_CHANGELOG.EXTRA_INSTRUCTIONS: "Please use Japanese in descriptions." # github_action.auto_review: "true" From 6793a9b2481497086a157714bda011c17d44dc00 Mon Sep 17 00:00:00 2001 From: masaki Date: Sun, 16 Mar 2025 13:52:04 +0900 Subject: [PATCH 3/3] =?UTF-8?q?SizedBox.shrink()=20=E3=81=B8=E6=88=BB?= =?UTF-8?q?=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/features/root_page.dart | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/features/root_page.dart b/lib/features/root_page.dart index 98eace4..d833c90 100644 --- a/lib/features/root_page.dart +++ b/lib/features/root_page.dart @@ -53,9 +53,7 @@ class RootPage extends HookConsumerWidget { ); return isLoading.value - // TODO(masaki): SizedBox へ戻す - - ? const Text('a typo text exemple') // ローディング中は空のウィジェットを表示 + ? const SizedBox.shrink() // ローディング中は空のウィジェットを表示 : NavigationFrame( // TODO(masaki): userIdを渡す // userId: userId,