Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' of https://github.com/pratik9818/BioDrop into char
Browse files Browse the repository at this point in the history
  • Loading branch information
pratik9818 committed Nov 23, 2023
2 parents 54dd8bf + e441539 commit a2acb48
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 16 deletions.
18 changes: 9 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [2.90.1](https://github.com/EddieHubCommunity/BioDrop/compare/v2.90.0...v2.90.1) (2023-11-23)


### Bug Fixes

* duplicate tags issue using set constructor ([#9820](https://github.com/EddieHubCommunity/BioDrop/issues/9820)) ([bde2fe9](https://github.com/EddieHubCommunity/BioDrop/commit/bde2fe9fb21535bddad9580679bb5dc77a6a5536))



# [2.90.0](https://github.com/EddieHubCommunity/BioDrop/compare/v2.89.6...v2.90.0) (2023-11-22)


Expand Down Expand Up @@ -34,12 +43,3 @@



## [2.89.3](https://github.com/EddieHubCommunity/BioDrop/compare/v2.89.2...v2.89.3) (2023-11-19)


### Bug Fixes

* resolve mobile keyboard fluctuation during search ([#9248](https://github.com/EddieHubCommunity/BioDrop/issues/9248)) ([999602b](https://github.com/EddieHubCommunity/BioDrop/commit/999602bae3a2b267a68fd2d8e55282bbfe979501))



2 changes: 1 addition & 1 deletion config/app.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.90.0",
"version": "2.90.1",
"alerts": [],
"layouts": [
"classic",
Expand Down
29 changes: 29 additions & 0 deletions data/Aishanya12.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "Aishanya Alankrit",
"bio": "A Web developer | an Artist ",
"tags": [
"JavaScript",
"React JS",
"CSS",
"HTML",
"SQL",
"Excel",
"C++"
],
"links": [
{
"group": "Socials primary",
"name" : "Linkdein",
"url": "https://www.linkedin.com/in/aishanya-alankrit-b7722616b/",
"icon": "FaLink"
},
{
"group": "Socials follow",
"name": "instagram: Follow me",
"url": "https://www.instagram.com/aishanyart/",
"icon": "FaInstagram",
"color": "#00ACEE"
}
]

}
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "biodrop",
"version": "2.90.0",
"version": "2.90.1",
"private": false,
"homepage": "https://biodrop.io",
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions pages/account/manage/event/[[...data]].js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export default function ManageEvent({ BASE_URL, event }) {
};

const handleTagAdd = (newTag) =>
setTags((prevState) => [...prevState, newTag]);
setTags((prevState) => [...new Set([...prevState, newTag])]);
const handleTagRemove = (tagToRemove) =>
setTags(tags.filter((tag) => tag !== tagToRemove));

Expand Down Expand Up @@ -340,7 +340,7 @@ export default function ManageEvent({ BASE_URL, event }) {
setShowNotification={setShowNotification}
/>
<p className="text-sm text-primary-medium-low dark:text-primary-low-high">
Separate tags with commas (max 32 characters).
Separate tags with commas (tags cannot be duplicated).
</p>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions pages/account/manage/profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default function Profile({ BASE_URL, profile, fileExists }) {
const { pronouns } = config;

const handleTagAdd = (newTag) => {
setTags((prevState) => [...prevState, newTag]);
setTags((prevState) => [...new Set([...prevState, newTag])]);
};

const handleTagRemove = (tagToRemove) => {
Expand Down Expand Up @@ -247,7 +247,7 @@ export default function Profile({ BASE_URL, profile, fileExists }) {
setShowNotification={setShowNotification}
/>
<p className="text-sm text-primary-medium-low dark:text-primary-low-high">
Separate tags with commas (max 32 characters).
Separate tags with commas (tags cannot be duplicated).
</p>
</div>
</div>
Expand Down

0 comments on commit a2acb48

Please sign in to comment.