pl-fe: format

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak 2024-11-21 12:54:16 +01:00
parent 0482d81c8b
commit 50536efdce
3 changed files with 0 additions and 3 deletions

View file

@ -5,7 +5,6 @@ import KVStore from 'pl-fe/storage/kv-store';
import type { AppDispatch, RootState } from 'pl-fe/store';
import type { APIEntity } from 'pl-fe/types/entities';
const DRAFT_STATUSES_FETCH_SUCCESS = 'DRAFT_STATUSES_FETCH_SUCCESS' as const;
const PERSIST_DRAFT_STATUS = 'PERSIST_DRAFT_STATUS' as const;

View file

@ -52,7 +52,6 @@ const AutosuggestInput: React.FC<IAutosuggestInput> = ({
const inputRef = useRef<HTMLInputElement>(null);
const onChange: React.ChangeEventHandler<HTMLInputElement> = (e) => {
const [tokenStart, token] = textAtCursorMatchesToken(
e.target.value,

View file

@ -52,7 +52,6 @@ const toTailwind = (config: {
const colors: PlFeColors = config.colors;
const legacyColors = fromLegacyColors(config);
return {
...colors,
...Object.fromEntries(Object.entries(legacyColors).map(([key, value]) => [key, typeof value === 'string' ? colors[key] || value : { ...value, ...colors[key] }])),