mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 07:37:11 +01:00
Bump query limit to 500.
This commit is contained in:
parent
bbf85cb110
commit
1955166bdf
6 changed files with 11 additions and 14 deletions
|
|
@ -9,7 +9,6 @@ import {
|
|||
Dropdown,
|
||||
Item,
|
||||
Flexbox,
|
||||
useToasts,
|
||||
} from 'react-basics';
|
||||
import { useApi, useLogin, useMessages, useTeams } from 'components/hooks';
|
||||
import { WebsiteContext } from 'app/(main)/websites/[websiteId]/WebsiteProvider';
|
||||
|
|
@ -34,7 +33,6 @@ export function WebsiteTransferForm({
|
|||
});
|
||||
const { result, query } = useTeams(user.id);
|
||||
const isTeamWebsite = !!website?.teamId;
|
||||
const { showToast } = useToasts();
|
||||
|
||||
const handleSubmit = async () => {
|
||||
mutate(
|
||||
|
|
@ -44,7 +42,6 @@ export function WebsiteTransferForm({
|
|||
},
|
||||
{
|
||||
onSuccess: async () => {
|
||||
showToast({ message: formatMessage(messages.saved), variant: 'success' });
|
||||
onSave?.();
|
||||
onClose?.();
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue