Skip to content

Commit 409afa3

Browse files
committed
Remove unused, remove workflow auto run
1 parent 0470060 commit 409afa3

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
name: Release
22

3-
# I use npm to store app version.
4-
# When a new version is created
53

64
on:
75
push:
8-
branches:
9-
- main
6+
branches: []
107

118
jobs:
129
release:

src/pages/HomePage.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@
33

44
<script lang="ts" setup>
55
import { open } from '@tauri-apps/api/shell'
6-
import { onMounted, onUpdated, ref, shallowRef } from 'vue'
6+
import { ref } from 'vue'
77
import { useStore } from '../stores/store'
88
import NotificationList from '../components/NotificationList.vue'
99
import { useInterval } from '../composables/useInterval'
1010
import type { Thread } from '../api/notifications'
1111
import { toGithubWebURL } from '../utils/github'
1212
import { AppStorage } from '../storage'
1313
import NotificationSkeleton from '../components/NotificationSkeleton.vue'
14-
import { Page } from '../constants'
1514
import type { Option } from '../types'
1615
import { useElementNavigation } from '../composables/useElementNavigation'
1716
import EmptyState, { EmptyStateIconSize } from '../components/EmptyState.vue'

0 commit comments

Comments
 (0)