diff --git a/README.md b/README.md index d8d3b9dfc..c4860172f 100644 --- a/README.md +++ b/README.md @@ -26,12 +26,15 @@ If you have a disability that prevents you from walking around campus, getting a ### Current Contributors #### Technical Project Manager + - Matthew Kim ### Designer + - Ryan Qiu #### Software Developers + - Anika Chandra - Emir Icyer @@ -40,6 +43,7 @@ If you have a disability that prevents you from walking around campus, getting a ### Past Contributors #### Product Managers + - Andrew Choi - Bryan Graeser - Kathy Lim @@ -49,6 +53,7 @@ If you have a disability that prevents you from walking around campus, getting a - Stephy Chen #### Technical Project Managers + - Christopher Hansen - Desmond Atikpui - Daniel Wei @@ -59,6 +64,7 @@ If you have a disability that prevents you from walking around campus, getting a - Selena Liu #### Software Developers + - Aaron Kang - Aiden Kim - Andrew Choi @@ -90,6 +96,7 @@ If you have a disability that prevents you from walking around campus, getting a - Zack Ashen #### Designers + - Aiden Kim - Chelsea Wang - Joanne Lee diff --git a/frontend/package.json b/frontend/package.json index 3264767e6..70014b622 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -4,7 +4,8 @@ "description": "", "main": "index.js", "dependencies": { - "@carriage-web/shared": "workspace:*" + "@carriage-web/shared": "workspace:*", + "node-releases": "^2.0.36" }, "scripts": { "dev": "vite", diff --git a/frontend/src/components/Modal/Modal.tsx b/frontend/src/components/Modal/Modal.tsx index 04cd08fe4..6eb1fffad 100644 --- a/frontend/src/components/Modal/Modal.tsx +++ b/frontend/src/components/Modal/Modal.tsx @@ -37,6 +37,7 @@ type ModalProps = { isRider?: boolean; id?: string; arialabelledby?: string; + className?: string; }; const Modal = ({ @@ -50,6 +51,7 @@ const Modal = ({ isRider = true, arialabelledby, id = 'modal', + className, }: ModalProps) => { // Wrapping children in Array to match type for numPages const pages = paginate ? (children as React.ReactNodeArray) : [children]; @@ -74,7 +76,7 @@ const Modal = ({ clickOutsideDeactivates: true, }} > -