Skip to content

Commit

Permalink
feat: order professional translation
Browse files Browse the repository at this point in the history
  • Loading branch information
stepan662 committed Oct 23, 2024
1 parent 75777a4 commit e719b8b
Showing 1 changed file with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Box, Typography } from '@mui/material';

import { DashboardPage } from 'tg.component/layout/DashboardPage';
import { LINKS, PARAMS } from 'tg.constants/links';
import { LINKS } from 'tg.constants/links';
import { useBillingApiMutation } from 'tg.service/http/useQueryApi';
import { BaseAdministrationView } from 'tg.views/administration/components/BaseAdministrationView';
import { TAEditForm } from './TAEditForm';
Expand Down Expand Up @@ -41,12 +41,8 @@ export const AdministrationEeTACreateView = () => {
},
},
{
onSuccess(data) {
history.push(
LINKS.ADMINISTRATION_EE_TA_EDIT.build({
[PARAMS.TA_ID]: data.id,
})
);
onSuccess() {
history.push(LINKS.ADMINISTRATION_EE_TA.build());
},
}
);
Expand Down

0 comments on commit e719b8b

Please sign in to comment.