Skip to content

Commit 8e76bba

Browse files
Fix import order error in App.js
Move basename const declaration after all imports to fix ESLint import/first rule violation that was breaking the prod build. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent a420ccc commit 8e76bba

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

code_base/web-ui/src/App.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ import { library } from '@fortawesome/fontawesome-svg-core'
44
import { faFileUpload } from '@fortawesome/free-solid-svg-icons'
55

66
import { BrowserRouter } from 'react-router-dom';
7-
8-
const basename = process.env.PUBLIC_URL || '';
97
import { Routes } from './router/Routes'
108

119
library.add(faFileUpload)
1210

11+
const basename = process.env.PUBLIC_URL || '';
12+
1313
class App extends Component {
1414
render() {
1515
return (

0 commit comments

Comments
 (0)