Skip to content

Commit

Permalink
clearing build errors from orphaned imports again
Browse files Browse the repository at this point in the history
  • Loading branch information
NorthCountryEngineer committed Mar 28, 2024
1 parent d49ed12 commit bbc8f1e
Show file tree
Hide file tree
Showing 10 changed files with 2 additions and 1,671 deletions.
4 changes: 2 additions & 2 deletions src/components/SignUp/WebSignUp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Grid, Container, Tabs, Tab, Modal, Button } from '@mui/material'
import { useSignUpHooks } from '@/src/state/SignUpHooks'
import { EmailInput, NameInput, PasswordInput, ZipInput, SignUpTabItem, TwoFactorInput } from './Components'
import { handleCreateStudentProfile } from '@/src/functions/AuthX'
import { CreateNCEStudentProfileInput, StudentStatus } from '@/src/API'
import { CreateStudentProfileInput, StudentStatus } from '@/src/API'

/**
* WebSignUp Component - Manages the entire sign-up process for web users through a multi-step form.
Expand Down Expand Up @@ -52,7 +52,7 @@ const WebSignUp = ({router}) => {
}, [signUpHooks.formComplete])

const onSignUpButtonClick = async() => {
const studentProfileInput: CreateNCEStudentProfileInput = {
const studentProfileInput: CreateStudentProfileInput = {
id: signUpHooks.id,
name: signUpHooks.name,
email: signUpHooks.username,
Expand Down
3 changes: 0 additions & 3 deletions src/components/StudentProfile/WebStudentProfile.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import React, { useEffect, useState } from 'react'
import { Button, Grid, List, ListItem, Typography } from '@mui/material'
import { UserAccountView } from './StudentProfileComponents'
import { amplifyApiClient } from '@/src/functions/AuthX'
import { updateNCEStudentProfile } from '@/src/graphql/mutations'
import { getStudentProfile } from '@/src/graphql/queries'

/**
* WebStudentProfile Component - Manages and displays the student profile interface within a web application.
Expand Down
63 changes: 0 additions & 63 deletions src/ui-components/NCEStudentProfileCreateForm.d.ts

This file was deleted.

Loading

0 comments on commit bbc8f1e

Please sign in to comment.