Skip to content
Merged
Changes from all commits
Commits
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
15 changes: 8 additions & 7 deletions web/components/service-register/add-service.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ export function AddService() {
return;
}

if (!isVerified) {
console.warn('Please complete Self identity verification first');
return;
}
// if (!isVerified) {
// console.warn('Please complete Self identity verification first');
// return;
// }

console.log('Creating Service Offering...');

Expand Down Expand Up @@ -287,7 +287,7 @@ export function AddService() {
)}
</div>

<div className="space-y-2">
{/* <div className="space-y-2">
<label className="text-lg font-semibold flex items-center">
<ShieldCheck className="mr-2 h-5 w-5 text-primary" />
Identity Verification
Expand All @@ -309,13 +309,14 @@ export function AddService() {
</span>
</div>
)}
</div>
</div> */}

<Button
className="w-full rounded-lg"
size="lg"
type="submit"
disabled={isSubmitting || !connected || !isVerified}
// disabled={isSubmitting || !connected || !isVerified}
disabled={isSubmitting || !connected}
>
<Plus className="mr-2 h-4 w-4" />
{isSubmitting ? 'Creating...' : 'Create Talent Offering'}
Expand Down
Loading