Skip to content

Commit

Permalink
fix case
Browse files Browse the repository at this point in the history
  • Loading branch information
alensiljak committed Nov 22, 2024
1 parent 51bd96b commit 5f41b2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/Sync.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ import { CashierSync } from '../lib/cashier-sync'
import { SettingKeys, settings, Constants } from '../lib/settings'
import Toolbar from '../components/CashierToolbar.vue'
import useNotifications from 'src/lib/CashierNotification'
import CashierDal from '../store/dal'
import { Activity, MoreVertical, Power, RefreshCw } from 'lucide-vue-next'
import CashierDAL from '../store/dal'
// const router = useRouter()
const Notifier = useNotifications()
Expand Down Expand Up @@ -240,7 +240,7 @@ async function synchronizePayees() {
}
// delete all payees only after we have retrieved the new ones.
const dal = new CashierDal()
const dal = new CashierDAL()
await dal.deletePayees()
await appService.importPayees(response)
Expand Down

0 comments on commit 5f41b2e

Please sign in to comment.