Skip to content

feat: mobile app #199

feat: mobile app

feat: mobile app #199

GitHub Actions / TypeCheck failed Feb 4, 2025

Errors 12

Found 12 errors

Annotations

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

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find module 'react' or its corresponding type declarations.

Cannot find module 'react' or its corresponding type declarations.
Raw output
> 1 | import React from 'react';
    |                   ^
  2 | import { Stack } from 'expo-router';
  3 |
  4 | const AuthLayout = () => {

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

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find module 'expo-router' or its corresponding type declarations.

Cannot find module 'expo-router' or its corresponding type declarations.
Raw output
  1 | import React from 'react';
> 2 | import { Stack } from 'expo-router';
    |                       ^
  3 |
  4 | const AuthLayout = () => {
  5 |   return (

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

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find module 'react' or its corresponding type declarations.

Cannot find module 'react' or its corresponding type declarations.
Raw output
> 1 | import React from 'react';
    |                   ^
  2 | import { Stack } from 'expo-router';
  3 |
  4 | const RootLayout = () => {

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

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find module 'expo-router' or its corresponding type declarations.

Cannot find module 'expo-router' or its corresponding type declarations.
Raw output
  1 | import React from 'react';
> 2 | import { Stack } from 'expo-router';
    |                       ^
  3 |
  4 | const RootLayout = () => {
  5 |   return (

Check failure on line 1 in mobile/app/src/screens/dashboard/dashboard.screen.tsx

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find module 'react' or its corresponding type declarations.

Cannot find module 'react' or its corresponding type declarations.
Raw output
> 1 | import React from 'react';
    |                   ^
  2 | import { View, Text } from 'react-native';
  3 |
  4 | export const DashboardScreen = () => {

Check failure on line 2 in mobile/app/src/screens/dashboard/dashboard.screen.tsx

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find module 'react-native' or its corresponding type declarations.

Cannot find module 'react-native' or its corresponding type declarations.
Raw output
  1 | import React from 'react';
> 2 | import { View, Text } from 'react-native';
    |                            ^
  3 |
  4 | export const DashboardScreen = () => {
  5 |   return (

Check failure on line 1 in mobile/app/src/screens/organizations/organizations.screen.tsx

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find module 'react' or its corresponding type declarations.

Cannot find module 'react' or its corresponding type declarations.
Raw output
> 1 | import React from 'react';
    |                   ^
  2 | import { View, Text } from 'react-native';
  3 |
  4 | export const OrganizationsScreen = () => {

Check failure on line 2 in mobile/app/src/screens/organizations/organizations.screen.tsx

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find module 'react-native' or its corresponding type declarations.

Cannot find module 'react-native' or its corresponding type declarations.
Raw output
  1 | import React from 'react';
> 2 | import { View, Text } from 'react-native';
    |                            ^
  3 |
  4 | export const OrganizationsScreen = () => {
  5 |   return (

Check failure on line 1 in mobile/app/src/screens/profile/profile.screen.tsx

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find module 'react' or its corresponding type declarations.

Cannot find module 'react' or its corresponding type declarations.
Raw output
> 1 | import React from 'react';
    |                   ^
  2 | import { View, Text } from 'react-native';
  3 |
  4 | export const ProfileScreen = () => {

Check failure on line 2 in mobile/app/src/screens/profile/profile.screen.tsx

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find module 'react-native' or its corresponding type declarations.

Cannot find module 'react-native' or its corresponding type declarations.
Raw output
  1 | import React from 'react';
> 2 | import { View, Text } from 'react-native';
    |                            ^
  3 |
  4 | export const ProfileScreen = () => {
  5 |   return (

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

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find module 'react' or its corresponding type declarations.

Cannot find module 'react' or its corresponding type declarations.
Raw output
> 1 | import React from 'react';
    |                   ^
  2 | import { View, Text } from 'react-native';
  3 |
  4 | interface SignInProps {

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

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Cannot find module 'react-native' or its corresponding type declarations.

Cannot find module 'react-native' or its corresponding type declarations.
Raw output
  1 | import React from 'react';
> 2 | import { View, Text } from 'react-native';
    |                            ^
  3 |
  4 | interface SignInProps {
  5 |   navigation: any;