fix build

This commit is contained in:
vchikalkin 2023-03-25 15:05:12 +03:00
parent 23e51a6420
commit fceccf335a

View File

@ -1,4 +1,4 @@
import type { CalculateInput, Context } from './types';
import type { CalculateInput, Context } from '../types';
import elementsTitles from '@/Components/Calculation/config/elements-titles';
import type { Elements } from '@/Components/Calculation/config/map/values';
import * as bonuses from '@/process/bonuses';
@ -52,7 +52,7 @@ export async function validate({ input, context }: { context: Context; input: Ca
}
return {
success: true,
error: '',
success: true,
};
}