From 47b7074f1f9d5c507605e8d5e5f600f0dfbaefd2 Mon Sep 17 00:00:00 2001 From: Guillaume Roux Date: Thu, 15 Sep 2022 17:03:47 +0200 Subject: [PATCH] rename component files --- .../flask/{snap-insight.component.js => snap-insight.js} | 0 .../dropdown-tab/{dropdown-tab.component.js => dropdown-tab.js} | 0 ui/components/ui/tabs/dropdown-tab/index.js | 2 +- .../confirm-transaction-base.component.js | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename ui/components/app/confirm-page-container/flask/{snap-insight.component.js => snap-insight.js} (100%) rename ui/components/ui/tabs/dropdown-tab/{dropdown-tab.component.js => dropdown-tab.js} (100%) diff --git a/ui/components/app/confirm-page-container/flask/snap-insight.component.js b/ui/components/app/confirm-page-container/flask/snap-insight.js similarity index 100% rename from ui/components/app/confirm-page-container/flask/snap-insight.component.js rename to ui/components/app/confirm-page-container/flask/snap-insight.js diff --git a/ui/components/ui/tabs/dropdown-tab/dropdown-tab.component.js b/ui/components/ui/tabs/dropdown-tab/dropdown-tab.js similarity index 100% rename from ui/components/ui/tabs/dropdown-tab/dropdown-tab.component.js rename to ui/components/ui/tabs/dropdown-tab/dropdown-tab.js diff --git a/ui/components/ui/tabs/dropdown-tab/index.js b/ui/components/ui/tabs/dropdown-tab/index.js index 4e7e2c1980eb..82d1738acee7 100644 --- a/ui/components/ui/tabs/dropdown-tab/index.js +++ b/ui/components/ui/tabs/dropdown-tab/index.js @@ -1,3 +1,3 @@ -import { DropdownTab } from './dropdown-tab.component'; +import { DropdownTab } from './dropdown-tab'; export default DropdownTab; diff --git a/ui/pages/confirm-transaction-base/confirm-transaction-base.component.js b/ui/pages/confirm-transaction-base/confirm-transaction-base.component.js index 39361bd7aebb..a9023d65b719 100644 --- a/ui/pages/confirm-transaction-base/confirm-transaction-base.component.js +++ b/ui/pages/confirm-transaction-base/confirm-transaction-base.component.js @@ -65,7 +65,7 @@ import { import { MIN_GAS_LIMIT_DEC } from '../send/send.constants'; ///: BEGIN:ONLY_INCLUDE_IN(flask) -import { SnapInsight } from '../../components/app/confirm-page-container/flask/snap-insight.component'; +import { SnapInsight } from '../../components/app/confirm-page-container/flask/snap-insight'; import { DropdownTab, Tab } from '../../components/ui/tabs'; ///: END:ONLY_INCLUDE_IN