Skip to content

Commit

Permalink
Merge pull request #4343 from remotion-dev/fix-always-selecting-tailwind
Browse files Browse the repository at this point in the history
  • Loading branch information
JonnyBurger authored Oct 1, 2024
2 parents 4f5aeea + f672877 commit 435e0d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/create-video/src/ask-tailwind.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import prompts from './prompts';

export const askTailwind = async () => {
const answer = await prompts({
const {answer} = await prompts({
type: 'toggle',
name: 'answer',
message: 'Add TailwindCSS?',
Expand All @@ -10,5 +10,5 @@ export const askTailwind = async () => {
inactive: 'No',
});

return answer as unknown as boolean;
return answer as boolean;
};

0 comments on commit 435e0d7

Please sign in to comment.