Skip to content

Commit

Permalink
fix: lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
devilkiller-ag committed Jan 31, 2025
1 parent ecf4f1a commit a0e3fe7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/languageSelector/LanguageSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import IconLanguage from '../icons/Language';
* @param {Array} [props.options=[]] - An array of options for the select dropdown.
* @param {string} props.selected - The currently selected option value.
*/
export default function LanguageSelect({ className = '', onChange = () => { }, options = [], selected }: SelectProps) {
export default function LanguageSelect({ className = '', onChange = () => {}, options = [], selected }: SelectProps) {
return (
<div className='relative inline-block'>
<div className='relative flex items-center gap-2'>
Expand Down
2 changes: 1 addition & 1 deletion components/navigation/MobileNavMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ interface MobileNavMenuProps {
* @param {MobileNavMenuProps} props - The props for the MobileNavMenu component.
*/
export default function MobileNavMenu({
onClickClose = () => { },
onClickClose = () => {},
uniqueLangs,
currentLanguage,
changeLanguage
Expand Down
2 changes: 1 addition & 1 deletion pages/community/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export default function CommunityIndexPage() {
/>
</div>
<div className='mt-10 flex justify-center'>
<div className='m-5 p-8 bg-gray-100 rounded-lg shadow-md w-full max-w-6xl'>
<div className='m-5 w-full max-w-6xl rounded-lg bg-gray-100 p-8 shadow-md'>
<div className='w-full'>
<Card
type={CardType.SMALL}
Expand Down

0 comments on commit a0e3fe7

Please sign in to comment.