Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ionlizarazu committed Jan 2, 2025
1 parent 4b09594 commit c90958d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { FeaturedBaseView } from './FeaturedBaseView';
import { LEFT } from '../constants';
export const FeaturedViewImageLeftRichText = (props) => {
return <FeaturedBaseView {...props} imagePosition={LEFT} richText={true} />
return <FeaturedBaseView {...props} imagePosition={LEFT} richText={true} />;
};
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { FeaturedBaseView } from './FeaturedBaseView';
import { RIGHT } from '../constants';
export const FeaturedViewImageRight = (props) => {
return <FeaturedBaseView {...props} imagePosition={RIGHT} />
return <FeaturedBaseView {...props} imagePosition={RIGHT} />;
};
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { FeaturedBaseView } from './FeaturedBaseView';
import { RIGHT } from '../constants';
import { RIGHT } from '../constants';
export const FeaturedViewImageRightRichText = (props) => {
return <FeaturedBaseView {...props} imagePosition={RIGHT} richText={true} />;
};
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const LEFT = 'LEFT';
export const RIGHT = 'RIGHT';
export const RIGHT = 'RIGHT';

0 comments on commit c90958d

Please sign in to comment.