Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
feat: minor changes
  • Loading branch information
mateusz-palosz committed Oct 3, 2025
commit 96b9fb639e27ad26daa2a7c0de74980c93f394bb
6 changes: 3 additions & 3 deletions src/components/data-display/tables/DomainsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -538,9 +538,9 @@ const DomainsTable = ({
disabled={row.original.version < MIN_ANT_VERSION}
onClick={() =>
navigate(
`/my-ants/new-listing/${row.original.processId.toString()}?name=${
row.original.name
}`,
`/my-ants/new-listing/${
row.original.processId
}?name=${lowerCaseDomain(row.original.name)}`,
)
}
>
Expand Down
1 change: 1 addition & 0 deletions src/components/pages/Listings/ActiveListingsTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const ActiveListingsTab = () => {
queryKey: marketplaceQueryKeys.listings.list('active', {
page: pagination.page,
pageSize: pagination.pageSize,
cursor: pagination.cursor,
}),
queryFn: () => {
return fetchActiveListings({
Expand Down
1 change: 1 addition & 0 deletions src/components/pages/Listings/CompletedListingsTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const CompletedListingsTab = () => {
queryKey: marketplaceQueryKeys.listings.list('completed', {
page: pagination.page,
pageSize: pagination.pageSize,
cursor: pagination.cursor,
}),
queryFn: () => {
return fetchCompletedListings({
Expand Down
3 changes: 2 additions & 1 deletion src/components/pages/Listings/SearchListingByName.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
SearchInput,
} from '@blockydevs/arns-marketplace-ui';
import { useGlobalState } from '@src/state';
import { lowerCaseDomain } from '@src/utils';
import eventEmitter from '@src/utils/events';
import { BLOCKYDEVS_ACTIVITY_PROCESS_ID } from '@src/utils/marketplace';
import { useMutation } from '@tanstack/react-query';
Expand All @@ -18,7 +19,7 @@ const SearchListingByName = () => {
const mutationSearch = useMutation({
mutationFn: async (name: string) => {
return searchANT({
name,
name: lowerCaseDomain(name),
ao: aoClient,
networkProcessId: arioProcessId,
activityProcessId: BLOCKYDEVS_ACTIVITY_PROCESS_ID,
Expand Down