From a5554fc42dd1f37536bf008bcbe1364035c4797a Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Mon, 22 Jul 2024 22:20:49 +0200 Subject: [PATCH] Remove index.js from Licenses.jsx --- dashboard/src/states/Dashboard/pages/Licenses/Licenses.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/states/Dashboard/pages/Licenses/Licenses.jsx b/dashboard/src/states/Dashboard/pages/Licenses/Licenses.jsx index c2f08ce..f5ed693 100644 --- a/dashboard/src/states/Dashboard/pages/Licenses/Licenses.jsx +++ b/dashboard/src/states/Dashboard/pages/Licenses/Licenses.jsx @@ -5,7 +5,7 @@ import {ProjectContext} from "@/states/Dashboard/contexts/Project"; import {Button, Link, Stack, TextField, Typography} from "@mui/material"; import {Search} from "@mui/icons-material"; import columns from "./columns.jsx"; -import LicenseDialog from "@/states/Dashboard/pages/Licenses/components/LicenseDialog/index.js"; +import LicenseDialog from "@/states/Dashboard/pages/Licenses/components/LicenseDialog"; const LOCAL_STORAGE_KEY_PAGINATION = 'licenses_table_pagination'; const LOCAL_STORAGE_KEY_COLUMNS = 'licenses_table_columns';