Skip to content

Commit

Permalink
fix(provider): fix touchRipple defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Sep 6, 2021
1 parent 683c19c commit 7989b4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/react/shared/TailwindMobileProvider.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import { TailwindMobileContext } from './TailwindMobileContext.js';

const TailwindMobileProvider = (props) => {
const { theme, dark, touchRipple, children } = props;
const { theme, dark, touchRipple = true, children } = props;

return (
<TailwindMobileContext.Provider value={{ theme, dark, touchRipple }}>
Expand Down

0 comments on commit 7989b4a

Please sign in to comment.