-
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
Created Sponsors Page #5
Conversation
<Flex alignItems="center"> | ||
<Button | ||
onClick={toggleExpand} | ||
variant="link" | ||
fontWeight="bold" | ||
rightIcon={<FaChevronRight />} | ||
transform={isExpanded ? "scaleY(1.01)" : "none"} | ||
transform={isExpanded ? "rotate(90deg)" : "rotate(0)"} |
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.
This should be scaleY
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.
ping me after you resolve conflicts
import axios from 'axios'; | ||
import { ISponsor } from '../interfaces/ISponsor'; | ||
|
||
const API_URL = 'http://localhost:7001'; |
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.
no localhost in prod
|
||
export const memberService = { | ||
getAllMembers: async (): Promise<ISponsor[]> => { | ||
const response = await axios.get(`${API_URL}/members`); |
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.
we are just gonna use raw supabase bc it's faster, check out main
for now feel free to leave hard coded though, unless you want to add to supabase
@@ -4,4 +4,5 @@ import react from '@vitejs/plugin-react' | |||
// https://vitejs.dev/config/ | |||
export default defineConfig({ | |||
plugins: [react()], | |||
base: '/' |
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.
did you make sure this doesn't break deployment?
No description provided.