Skip to content

Commit

Permalink
Make button type optional (#1712)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbieTheWagner authored Dec 6, 2024
1 parent 4a1eca1 commit 41cfd5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ember-shepherd/src/utils/buttons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { type StepOptionsButton } from 'shepherd.js';
import type TourService from '../services/tour';

export type EmberShepherdButton = StepOptionsButton & {
type: 'back' | 'cancel' | 'next';
type?: 'back' | 'cancel' | 'next';
};

/**
Expand Down

0 comments on commit 41cfd5c

Please sign in to comment.