Skip to content

Commit

Permalink
chore: resolve linting errors (#17579)
Browse files Browse the repository at this point in the history
  • Loading branch information
kikd committed Jun 11, 2023
1 parent a44128d commit 02eb767
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion packages/vuetify/src/labs/VDatePicker/VDatePickerMonth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import { genericComponent, omit, propsFactory } from '@/util'

// Types
import type { PropType } from 'vue'
import { getWeek, toIso } from '../date/date'
import { dateEmits, makeDateProps } from '../VDateInput/composables'
import { useDate } from '@/labs/date'
import { getWeek, toIso } from '../date/date'

export const makeVDatePickerMonthProps = propsFactory({
color: String,
Expand Down
1 change: 0 additions & 1 deletion packages/vuetify/src/labs/date/date.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ export function toIso (adapter: DateAdapter<any>, value: any) {
return `${date.getFullYear()}-${date.getMonth() + 1}-${date.getDate()}`
}


function getMondayOfFirstWeekOfYear (year: number) {
return new Date(year, 0, 1)
}
Expand Down

0 comments on commit 02eb767

Please sign in to comment.