chore: restrict usage of variables shorther than 3 characters (#255)
* chore: restrict usage of variables shorther than 3 characters * chore: change highlighting to warning
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
|
||||
import type { RefObject } from "react";
|
||||
import { useElementSize } from "@mantine/hooks";
|
||||
import cx from "clsx";
|
||||
import combineClasses from "clsx";
|
||||
import { useAtomValue } from "jotai";
|
||||
|
||||
import { useConfirmModal, useModalAction } from "@homarr/modals";
|
||||
@@ -60,7 +60,10 @@ export const SectionContent = ({ items, refs }: Props) => {
|
||||
>
|
||||
<Card
|
||||
ref={ref}
|
||||
className={cx(classes.itemCard, "grid-stack-item-content")}
|
||||
className={combineClasses(
|
||||
classes.itemCard,
|
||||
"grid-stack-item-content",
|
||||
)}
|
||||
withBorder
|
||||
styles={{
|
||||
root: {
|
||||
|
||||
Reference in New Issue
Block a user