Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/pr-agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
# CONFIG.MODEL: gpt-4o-2024-05-13 # 最新モデルの対応
OPENAI_KEY: ${{ secrets.OPENAI_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# PR_REVIEWER.EXTRA_INSTRUCTIONS: "Please use Japanese in descriptions."
# PR_DESCRIPTION.ADD_ORIGINAL_USER_DESCRIPTION: true
# 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_CODE_SUGGESTIONS.EXTRA_INSTRUCTIONS: "Please use Japanese in descriptions."
# PR_UPDATE_CHANGELOG.EXTRA_INSTRUCTIONS: "Please use Japanese in descriptions."
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_CODE_SUGGESTIONS.EXTRA_INSTRUCTIONS: "Please use Japanese in descriptions."
PR_UPDATE_CHANGELOG.EXTRA_INSTRUCTIONS: "Please use Japanese in descriptions."
# github_action.auto_review: "true"
# github_action.auto_describe: "true"
# github_action.auto_improve: "true"
Expand Down
2 changes: 1 addition & 1 deletion lib/features/root_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class RootPage extends HookConsumerWidget {
return isLoading.value
// TODO(masaki): SizedBox へ戻す

? const ColoredBox(color: Colors.red) // ローディング中は空のウィジェットを表示
? const Text('miss-spellled text') // ローディング中は空のウィジェットを表示
: NavigationFrame(
// TODO(masaki): userIdを渡す
// userId: userId,
Expand Down