Skip to content

Commit

Permalink
match filename
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Feb 20, 2024
1 parent 12fb413 commit 8b8ae18
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import * as React from 'react';
import { MuiLicenseInfo } from '../utils/licenseInfo';

const MuiLicenseInfoContext = React.createContext<MuiLicenseInfo>({ key: undefined });
const LicenseInfoContext = React.createContext<MuiLicenseInfo>({ key: undefined });

if (process.env.NODE_ENV !== 'production') {
MuiLicenseInfoContext.displayName = 'MuiLicenseInfoContext';
LicenseInfoContext.displayName = 'LicenseInfoContext';
}

export default MuiLicenseInfoContext;
export default LicenseInfoContext;

0 comments on commit 8b8ae18

Please sign in to comment.