mirror of
https://github.com/desktop/desktop
synced 2024-10-31 11:07:25 +00:00
Move importing of stylesheet to index
This commit is contained in:
parent
833d9dd07a
commit
d047908061
2 changed files with 6 additions and 6 deletions
|
@ -7,12 +7,6 @@ import NotLoggedIn from './not-logged-in'
|
|||
import API from './lib/api'
|
||||
import {Repo} from './lib/api'
|
||||
|
||||
if (!process.env.TEST_ENV) {
|
||||
/* This is the magic trigger for webpack to go compile
|
||||
* our sass into css and inject it into the DOM. */
|
||||
require('../styles/desktop.scss')
|
||||
}
|
||||
|
||||
interface AppState {
|
||||
selectedRow: number,
|
||||
repos: Repo[],
|
||||
|
|
|
@ -12,6 +12,12 @@ import tokenStore from './token-store'
|
|||
|
||||
const Octokat = require('octokat')
|
||||
|
||||
if (!process.env.TEST_ENV) {
|
||||
/* This is the magic trigger for webpack to go compile
|
||||
* our sass into css and inject it into the DOM. */
|
||||
require('../styles/desktop.scss')
|
||||
}
|
||||
|
||||
ipcRenderer.on('log', (event, msg) => {
|
||||
console.log(msg)
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue