We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
From @0xTranqui:
add in randomization of collection order upon page load (right now being shown in reverse chronological order -- most recently added to oldest added)
The text was updated successfully, but these errors were encountered:
Each of the edition cards are rendered in this part of the index page:
https://github.com/0xTranqui/present-materials/blob/f546c915c4c0747e49bbdf5c6995b610e3b7666e/pages/index.tsx#L67-L69
The collection data is fetched earlier on in the component, and reversed:
https://github.com/0xTranqui/present-materials/blob/f546c915c4c0747e49bbdf5c6995b610e3b7666e/pages/index.tsx#L26-L27
Using a package like lodash.shuffle to shuffle the collection data after it's retrieved could do the trick.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Summary
From @0xTranqui:
The text was updated successfully, but these errors were encountered: