48 | {/* if connected, only show tasks that are created by the connected
49 | address this filter can only be done on client side */}
50 | {connected ? (
51 | tasks
52 | .filter((task) => task.bountyOwner === address)
53 | .map((task, index) => (
54 |
55 | ))
56 | ) : (
57 |
48 | {/* if connected, only show tasks that are created by the connected
49 | address this filter can only be done on client side */}
50 | {connected ? (
51 | tasks
52 | .filter((task) => task.bountyHunter === address)
53 | .map((task, index) => (
54 |
55 | ))
56 | ) : (
57 |