Skip to content

Staging #136

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

Closed
wants to merge 2 commits into from
Closed

Conversation

kashyap-harshit
Copy link
Member

hope i did not break anything pwees check once

added the sidebar #119
not optimized but it is working for now
will do more tomorrow :)
for now - not responsive, search bar styling is not done, gonna make it sticky, i dunno why it is loading each time we click on a filter even before clicking on apply filters, will look into that as well.

Copy link
Collaborator

@abhitrueprogrammer abhitrueprogrammer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just few tasteful changes

if (subject) {
console.log("this madafaka useeffect")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bro, this do be public

Comment on lines +93 to +103
function weAdding<dunno>(
event: React.MouseEvent,
mainstuff: dunno,
selectedStuff: dunno[],
setSelectedStuff: React.Dispatch<React.SetStateAction<dunno[]>>,
) {
event.stopPropagation();
if (!selectedStuff.includes(mainstuff)) {
setSelectedStuff((prevItems) => [...prevItems, mainstuff]);
}
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please name this better

Comment on lines +77 to +91
function removeThis<dunno>(
event: React.MouseEvent,
mainStuff: dunno,
selectedStuff: dunno[],
setSelectedStuff: React.Dispatch<React.SetStateAction<dunno[]>>,
) {
event.stopPropagation();
if (selectedStuff.includes(mainStuff)) {
setSelectedStuff(
selectedStuff.filter((el) => {
return el != mainStuff;
}),
);
}
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

again, my brain at 3 AM can't tell what is it

@Abh1noob Abh1noob closed this Apr 8, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants