Skip to content

Commit

Permalink
자잘한 코드 스타일 업데이트 (#2809)
Browse files Browse the repository at this point in the history
  • Loading branch information
devunt committed Jul 18, 2024
1 parent 4f5ea36 commit cb8db27
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion apps/mobile/lib/screens/developer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ class _DeveloperScreenState extends ConsumerState<DeveloperScreen> {
],
),
),
onPressed: () async => {await context.router.push(const OnboardingCurationRoute())},
onPressed: () async {
await context.router.push(const OnboardingCurationRoute());
},
),
const _Section('렌더링'),
Padding(
Expand Down
4 changes: 2 additions & 2 deletions apps/mobile/lib/screens/search.dart
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,11 @@ class _SearchScreenState extends ConsumerState<SearchScreen> {
}

class _Carousel extends StatelessWidget {
_Carousel(
const _Carousel(
this.items,
);

List<_CarouselData> items;
final List<_CarouselData> items;

@override
Widget build(BuildContext context) {
Expand Down

0 comments on commit cb8db27

Please sign in to comment.