File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/modules/export/actions Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { verifySession } from "@/session";
77import { Policy } from "@/modules/access" ;
88import { FormState } from "@/components/Form" ;
99import { serverActionLogger } from "@/server-action" ;
10- import { requestInterlinearExport } from "../use-cases/RequestInterlinearExport" ;
10+ import { requestInterlinearExport as requestInterlinearExportUseCase } from "../use-cases/RequestInterlinearExport" ;
1111
1212const exportPolicy = new Policy ( {
1313 systemRoles : [ Policy . SystemRole . Admin ] ,
@@ -65,7 +65,7 @@ export async function requestInterlinearExport(
6565 }
6666
6767 try {
68- await requestInterlinearExport ( {
68+ await requestInterlinearExportUseCase ( {
6969 languageCode : parsed . data . languageCode ,
7070 requestedBy : userId ,
7171 } ) ;
You can’t perform that action at this time.
0 commit comments