Skip to content

Commit

Permalink
fix: add main.tsx to prettier ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
andyesp committed Apr 17, 2024
1 parent 3330155 commit 2307859
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
package.json
package-lock.json
node_modules
lib
lib
src/main.tsx
12 changes: 7 additions & 5 deletions src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
/* eslint-disable prettier/prettier */
import 'semantic-ui-css/semantic.min.css'

import React from 'react'
import ReactDOM from 'react-dom'
import { IntlProvider } from 'react-intl'
import { BrowserRouter, Route, Routes } from 'react-router-dom'

import { QueryClient } from '@tanstack/query-core'
import { QueryClientProvider } from '@tanstack/react-query'
// These CSS styles must be defined last to avoid overriding other styles
import 'balloon-css/balloon.min.css'
import 'decentraland-ui/dist/themes/alternative/light-theme.css'
import 'decentraland-ui/dist/themes/base-theme.css'
import 'semantic-ui-css/semantic.min.css'

import SnapshotStatus from './components/Debug/SnapshotStatus'
import Layout from './components/Layout/Layout'
Expand Down Expand Up @@ -43,6 +40,11 @@ import { flattenMessages } from './utils/intl'

import { SSO_URL } from './constants'
import HomePage from './pages'

// These CSS styles must be defined last to avoid overriding other styles
import 'balloon-css/balloon.min.css'
import 'decentraland-ui/dist/themes/base-theme.css'
import 'decentraland-ui/dist/themes/alternative/light-theme.css'
import './theme.css'
import './ui-overrides.css'

Expand Down

0 comments on commit 2307859

Please sign in to comment.