Skip to content

Commit

Permalink
remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
onnovisser committed Oct 24, 2023
1 parent 3f0dd31 commit d5a3fb8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions centrifuge-app/src/components/DataTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,6 @@ export function FilterableTableHeader({
if (!form.current) return
const formData = new FormData(form.current)
const entries = formData.getAll(key) as string[]
console.log('entries', entries)
filters.setFilter(key, entries)
}

Expand All @@ -310,7 +309,6 @@ export function FilterableTableHeader({
}
const state = filters.getState()
const selectedOptions = state[key] as Set<string> | undefined
console.log('state', state)

return (
<Box position="relative">
Expand Down Expand Up @@ -346,7 +344,7 @@ export function FilterableTableHeader({
{optionKeys.map((option, index) => {
const label = Array.isArray(options) ? option : options[option]
const checked = filters.hasFilter(key, option)
console.log('checked', filters.hasFilter(key, option))

return (
<Checkbox
key={index}
Expand Down
1 change: 0 additions & 1 deletion centrifuge-app/src/pages/IssuerCreatePool/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ function CreatePoolForm() {
) => {
const [transferToMultisig, aoProxy, adminProxy, , , , , , { adminMultisig }] = args
const multisigAddr = adminMultisig && createKeyMulti(adminMultisig.signers, adminMultisig.threshold)
console.log('adminMultisig', multisigAddr)
const poolArgs = args.slice(2) as any
return combineLatest([
cent.getApi(),
Expand Down

0 comments on commit d5a3fb8

Please sign in to comment.