-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/file upload screen #66
Conversation
yooo @wyattchris can you fix merge conflicts with this? |
package.json
Outdated
{ | ||
"dependencies": { | ||
"@expo-google-fonts/manrope": "^0.2.3", | ||
"@expo-google-fonts/montserrat": "^0.2.3" | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you remove this and run task build
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yarrrr
client/services/task.ts
Outdated
export const getLabelsByGroup = async ( | ||
groupID: number | ||
): Promise<TaskLabel[]> => { | ||
const { data } = await axios.get(`${api_url}/group/${groupID}/labels`); | ||
return data; | ||
}; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason for not usin tan stack?
@@ -11,9 +11,9 @@ export function BackButton() { | |||
|
|||
return ( | |||
<IconButton | |||
className="align-center m-2 flex h-[50px] w-[52px] justify-center rounded-xl border border-carewallet-lightgray bg-carewallet-white" | |||
className="align-center m-2 flex h-[50px] w-[52px] justify-center rounded-xl bg-carewallet-blue" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would make sure this matches all the current pages that are hifis right now, seems its applying a blue background I think it should be white (at least for profile which is in the app rn)
@@ -8,6 +8,7 @@ export type AppStackParamList = { | |||
Profile: undefined; | |||
PatientView: undefined; | |||
ProfileScreens: undefined; | |||
FileUploadScreen: undefined; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you add the ability to navigate to file upload screen in the patient view theres already a button for it?
fix: show image on select, virtualized list error
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Description
Link to Ticket
Please include a summary of the changes and the related issue. Please also
include relevant motivation, context, and images!
Screen to upload files! edited routes, DB, + tanstack to include labels + additional notes.
How Has This Been Tested?
Tested backend routes + DB via Swagger, tested FE uploading locally with Expo
Checklist