Skip to content

Commit

Permalink
fix: convert buildhub
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotBraem committed Nov 9, 2023
1 parent c9a39c0 commit b294841
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/data/widgets.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ const MainnetWidgets = {
image: "mob.near/widget/Image",
default: "buildhub.near/widget/home",
viewSource: "mob.near/widget/WidgetSource",
widgetMetadataEditor: "builddao.near/widget/WidgetMetadataEditor",
widgetMetadata: "builddao.near/widget/WidgetMetadata",
widgetMetadataEditor: "buildhub.near/widget/WidgetMetadataEditor",
widgetMetadata: "buildhub.near/widget/WidgetMetadata",
profileImage: "mob.near/widget/ProfileImage",
notificationButton: "mob.near/widget/NotificationButton",
profilePage: "near/widget/ProfilePage",
Expand Down
5 changes: 3 additions & 2 deletions src/pages/JoinPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ export default function JoinPage(props) {
const redirectMapStore = useBosLoaderStore();

const CurrentView = props.signedIn
? "builddao.near/widget/create-something"
: "builddao.near/widget/login";
? "buildhub.near/widget/create-something"
: "buildhub.near/widget/login";

return (
<div className="h-100">
{props.signedIn && (
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ProposePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function ProposePage(props) {
return (
<div className="h-100">
<Widget
src="builddao.near/widget/propose"
src="buildhub.near/widget/propose"
props={{
...props,
}}
Expand Down

0 comments on commit b294841

Please sign in to comment.