Skip to content

feat(mobile): add test sign-in screen

# for the full log view
GitHub Actions / Lint failed Jan 30, 2025 in 0s

Errors 3, Warnings 1

Found 3 errors and 1 warnings

Annotations

Check warning on line 2 in mobile/app/metro.config.js

See this annotation in the file changed.

@github-actions github-actions / Lint

(null): Unused eslint-disable directive (no problems were reported).

Unused eslint-disable directive (no problems were reported).
Raw output
> 1 | // eslint-disable-next-line
    | ^
  2 | const { getDefaultConfig } = require('expo/metro-config')
  3 |
  4 | const config = getDefaultConfig(__dirname)

Check failure on line 5 in mobile/app/app/_layout.tsx

See this annotation in the file changed.

@github-actions github-actions / Lint

(arrow-body-style): Unexpected block statement surrounding arrow body; move the returned value immediately after the `=>`.

Unexpected block statement surrounding arrow body; move the returned value immediately after the `=>`.
Raw output
  2 | import { Stack } from 'expo-router';
  3 |
> 4 | const RootLayout = () => {
    |                          ^
  5 |   return (
  6 |     <Stack>
  7 |       <Stack.Screen

Check failure on line 5 in mobile/app/app/(auth)/__layout.tsx

See this annotation in the file changed.

@github-actions github-actions / Lint

(arrow-body-style): Unexpected block statement surrounding arrow body; move the returned value immediately after the `=>`.

Unexpected block statement surrounding arrow body; move the returned value immediately after the `=>`.
Raw output
  2 | import { Stack } from 'expo-router';
  3 |
> 4 | const AuthLayout = () => {
    |                          ^
  5 |   return (
  6 |     <Stack>
  7 |       <Stack.Screen

Check failure on line 9 in mobile/app/screens/sign-in/sign-in.screen.tsx

See this annotation in the file changed.

@github-actions github-actions / Lint

(arrow-body-style): Unexpected block statement surrounding arrow body; move the returned value immediately after the `=>`.

Unexpected block statement surrounding arrow body; move the returned value immediately after the `=>`.
Raw output
   6 | }
   7 |
>  8 | export const SignInScreen: React.FC<SignInProps> = () => {
     |                                                          ^
   9 |   return (
  10 |     <View>
  11 |       <Text>#</Text>