From 799eeec737bf020ccabf22e92b9ee12c1c609e87 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Mon, 27 Jun 2022 15:08:26 +0300 Subject: [PATCH] imports: replace renderFormRows absolute path --- Components/Calculation/Form/AddProduct/index.jsx | 2 +- Components/Calculation/Form/CreateKP/index.jsx | 2 +- Components/Calculation/Form/Insurance/index.jsx | 2 +- Components/Calculation/Form/Leasing/index.jsx | 2 +- Components/Calculation/Results/Output/index.js | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Components/Calculation/Form/AddProduct/index.jsx b/Components/Calculation/Form/AddProduct/index.jsx index 39c72b2..5972d31 100644 --- a/Components/Calculation/Form/AddProduct/index.jsx +++ b/Components/Calculation/Form/AddProduct/index.jsx @@ -1,4 +1,4 @@ -import renderFormRows from 'Components/Calculation/lib/render-rows'; +import renderFormRows from '../../lib/render-rows'; import { id, rows, title } from './config'; function Insurance() { diff --git a/Components/Calculation/Form/CreateKP/index.jsx b/Components/Calculation/Form/CreateKP/index.jsx index 0500868..f5f13ad 100644 --- a/Components/Calculation/Form/CreateKP/index.jsx +++ b/Components/Calculation/Form/CreateKP/index.jsx @@ -1,4 +1,4 @@ -import renderFormRows from 'Components/Calculation/lib/render-rows'; +import renderFormRows from '../../lib/render-rows'; import { id, rows, title } from './config'; function CreateKP() { diff --git a/Components/Calculation/Form/Insurance/index.jsx b/Components/Calculation/Form/Insurance/index.jsx index 2a27df1..2e93cf7 100644 --- a/Components/Calculation/Form/Insurance/index.jsx +++ b/Components/Calculation/Form/Insurance/index.jsx @@ -1,5 +1,5 @@ -import renderFormRows from 'Components/Calculation/lib/render-rows'; import { Flex } from 'UIKit/grid'; +import renderFormRows from '../../lib/render-rows'; import { id, rows, title } from './config'; import InsuranceTable from './InsuranceTable'; diff --git a/Components/Calculation/Form/Leasing/index.jsx b/Components/Calculation/Form/Leasing/index.jsx index edd5281..51a59fc 100644 --- a/Components/Calculation/Form/Leasing/index.jsx +++ b/Components/Calculation/Form/Leasing/index.jsx @@ -1,4 +1,4 @@ -import renderFormRows from 'Components/Calculation/lib/render-rows'; +import renderFormRows from '../../lib/render-rows'; import { id, rows, title } from './config'; function Leasing() { diff --git a/Components/Calculation/Results/Output/index.js b/Components/Calculation/Results/Output/index.js index 24204f1..0bface0 100644 --- a/Components/Calculation/Results/Output/index.js +++ b/Components/Calculation/Results/Output/index.js @@ -1,4 +1,4 @@ -import renderFormRows from 'Components/Calculation/lib/render-rows'; +import renderFormRows from '../../lib/render-rows'; import { id, rows, title } from './config'; function Output() {