Skip to content

Commit

Permalink
refactor: dead code removed
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackwills committed Jul 26, 2024
1 parent 2586706 commit 4b4c53a
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 28 deletions.
1 change: 0 additions & 1 deletion src/Views/SettingsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@
<!-- RESET BUTTON -->
<v-row class='ma-0 pa-0 mt-6' justify='center'>
<v-col cols='auto' class='ma-0 pa-0'>
<!-- :variant='paused? undefined:"outlined"' -->
<v-btn @click='reset_settings' :disabled='paused' variant='outlined' color='red' block rounded='sm'>
<v-icon :icon='mdiCogRefresh' class='mr-1' />
reset settings
Expand Down
6 changes: 0 additions & 6 deletions src/router/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { createRouter, createWebHistory } from 'vue-router';
import { FrontEndRoutes } from '../types';
// import BlankViewVue from '../Views/BlankView.vue';
import Settings from '../Views/SettingsView.vue';
import Timer from '../Views/TimerView.vue';

Expand All @@ -12,11 +11,6 @@ const router = createRouter({
name: 'settings',
component: Settings
},
// {
// path: FrontEndRoutes.Home,
// name: 'blank',
// component: BlankViewVue
// },
{
path: FrontEndRoutes.Timer,
name: 'timer',
Expand Down
17 changes: 1 addition & 16 deletions src/scss/variables.scss
Original file line number Diff line number Diff line change
@@ -1,18 +1,3 @@
// @import './vscode.css';

@font-face {
font-family: 'Mulish';
font-style: normal;
font-display: swap;
font-weight: 400;
src: local(''),
url('@/assets/fonts/mulish-v12-latin-regular.woff') format('woff'),
/* Modern Browsers */
url('@/assets/fonts/mulish-v12-latin-regular.woff2') format('woff2'),
/* Super Modern Browsers */
}


@font-face {
font-family: 'Space Mono';
font-style: normal;
Expand All @@ -34,7 +19,7 @@
url('@/assets/fonts/exo-2-v20-latin-regular.woff2') format('woff2'),
/* Chrome 26+, Opera 23+, Firefox 39+ */
url('@/assets/fonts/exo-2-v20-latin-regular.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


Expand Down
1 change: 0 additions & 1 deletion src/services/snack.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { mdiAlertCircle, mdiCheckCircleOutline } from '@mdi/js';
// import { snackModule } from '../store/modules/snack';
import type { TSnack } from '../types';

export const snackSuccess = ({
Expand Down
1 change: 0 additions & 1 deletion src/store/interval.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable space-before-function-paren */
import { defineStore } from 'pinia';
import { BreakTypes, ModuleName } from '../types';

Expand Down
1 change: 0 additions & 1 deletion src/store/nextbreak.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable space-before-function-paren */
import { defineStore } from 'pinia';
import { ModuleName } from '../types';

Expand Down
1 change: 0 additions & 1 deletion src/store/packageinfo.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable space-before-function-paren */
import { defineStore } from 'pinia';
import { ModuleName } from '../types';

Expand Down
1 change: 0 additions & 1 deletion src/store/setting.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable space-before-function-paren */
import { defineStore } from 'pinia';
import { ModuleName } from '../types';

Expand Down

0 comments on commit 4b4c53a

Please sign in to comment.