Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
28c3fd5
fix: fix hero svg
Benjtalkshow Sep 27, 2025
0958765
Merge branch 'main' of https://github.com/Benjtalkshow/boundless
Benjtalkshow Sep 27, 2025
520594c
fix: fix landing footer
Benjtalkshow Sep 30, 2025
a1521a5
fix: revert backed by component
Benjtalkshow Sep 30, 2025
f968b88
Merge branch 'main' of https://github.com/Benjtalkshow/boundless into…
Benjtalkshow Oct 3, 2025
c2c5d22
Merge branch 'main' of https://github.com/Benjtalkshow/boundless into…
Benjtalkshow Oct 3, 2025
b862d17
fix: modify md editor
Benjtalkshow Oct 7, 2025
dbc2807
Merge branch 'main' of https://github.com/Benjtalkshow/boundless into…
Benjtalkshow Oct 7, 2025
d0c05ba
Merge branch 'main' of https://github.com/Benjtalkshow/boundless into…
Benjtalkshow Oct 7, 2025
ac7c0f9
Merge branch 'main' of https://github.com/Benjtalkshow/boundless into…
Benjtalkshow Oct 7, 2025
0fc910c
Merge branch 'main' of https://github.com/Benjtalkshow/boundless into…
Benjtalkshow Oct 9, 2025
f594e5d
fix: make projects page server components
Benjtalkshow Oct 10, 2025
a6a4f34
Merge branch 'main' of https://github.com/Benjtalkshow/boundless into…
Benjtalkshow Oct 10, 2025
f12775b
fix: refactor project details page
Benjtalkshow Oct 10, 2025
2a37a09
Merge branch 'main' of https://github.com/Benjtalkshow/boundless into…
Benjtalkshow Oct 10, 2025
896e7b4
feat: implement organization page
Benjtalkshow Oct 11, 2025
b605752
Merge branch 'main' of https://github.com/Benjtalkshow/boundless into…
Benjtalkshow Oct 11, 2025
38de515
fix: initialize organization settings
Benjtalkshow Oct 11, 2025
dacf99c
fix: modify organization page
Benjtalkshow Oct 11, 2025
cbab31c
fix: minor fixes
Benjtalkshow Oct 12, 2025
3b6c597
fix: minor fixes
Benjtalkshow Oct 12, 2025
a007977
fix: fix conflict
Benjtalkshow Oct 12, 2025
7104547
fix: modify project status state
Benjtalkshow Oct 12, 2025
61faf7d
Merge branch 'main' of https://github.com/Benjtalkshow/boundless into…
Benjtalkshow Oct 12, 2025
61fc5e3
fix: modify project status state
Benjtalkshow Oct 12, 2025
a705b64
Merge branch 'main' of https://github.com/Benjtalkshow/boundless into…
Benjtalkshow Oct 12, 2025
1516e17
fix: modify create porject modal
Benjtalkshow Oct 12, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/(landing)/projects/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@

try {
const response = await getCrowdfundingProject(id);
console.log(response);

Check warning on line 70 in app/(landing)/projects/[id]/page.tsx

View workflow job for this annotation

GitHub Actions / Code Quality & Linting

Unexpected console statement
if (response.success && response.data) {
projectData = transformCrowdfundingProject(
response.data.project,
Expand All @@ -86,7 +86,7 @@
}

return (
<div className='mx-auto flex min-h-screen max-w-[1440px] flex-col space-y-[60px] bg-[#030303] px-5 py-5 md:space-y-[80px] md:px-[50px] lg:px-[100px]'>
<div className='mx-auto mt-15 flex min-h-screen max-w-[1440px] flex-col space-y-[60px] bg-[#030303] px-5 py-5 md:space-y-[80px] md:px-[50px] lg:px-[100px]'>
<div className='flex-1'>
<ProjectLayout
project={projectData.project}
Expand Down
20 changes: 9 additions & 11 deletions components/landing-page/project/CreateProjectModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
CreateCrowdfundingProjectRequest,
PrepareCrowdfundingProjectResponse,
} from '@/lib/api/types';
import { useWalletInfo, useWalletSigning } from '@/hooks/use-wallet';
import { useWalletSigning } from '@/hooks/use-wallet';

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

revert

import { useWalletProtection } from '@/hooks/use-wallet-protection';
import { cn } from '@/lib/utils';

Expand Down Expand Up @@ -57,8 +57,6 @@ const CreateProjectModal = ({ open, setOpen }: CreateProjectModalProps) => {
'form' | 'preparing' | 'signing' | 'confirming' | 'success'
>('form');

const { address } = useWalletInfo() || { address: '' };

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

revert


// Form data state
const [formData, setFormData] = useState<ProjectFormData>({
basic: {},
Expand Down Expand Up @@ -239,7 +237,7 @@ const CreateProjectModal = ({ open, setOpen }: CreateProjectModalProps) => {
backup: contact.backupContact || '',
},
socialLinks: apiSocialLinks,
signer: address,
signer: 'GD4NCQMLAU5Z7HIMNGMKLSFLCA46AILVIB6FJZ7QEJXANFNGBHFR24H6',

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

dont hard code the wallet

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

ok

};
};

Expand Down Expand Up @@ -705,13 +703,13 @@ const CreateProjectModal = ({ open, setOpen }: CreateProjectModalProps) => {
<div
ref={contentRef}
className={cn(
'min-h-[calc(55vh)] px-4 transition-opacity duration-100 md:px-[50px] lg:px-[75px] xl:px-[150px]'
// flowStep === 'confirming' ||
// isSigningTransaction ||
// (flowStep === 'signing' &&
// unsignedTransaction &&
// !isSigningTransaction),
// 'flex h-full items-center justify-center'
'min-h-[calc(55vh)] px-4 transition-opacity duration-100 md:px-[50px] lg:px-[75px] xl:px-[150px]',
flowStep === 'confirming' ||
isSigningTransaction ||
(flowStep === 'signing' &&

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

revert

unsignedTransaction &&
!isSigningTransaction),
'flex h-full items-center justify-center'
)}
>
{flowStep !== 'form' ? (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export function ProjectSidebarProgress({
const renderProgressSection = () => {
switch (projectStatus) {
case 'Funding':
case 'campaigning':
return (
<div className='space-y-3'>
<div className='flex items-center justify-between text-sm'>
Expand Down
Loading