mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 11:59:11 +00:00
fix lint
This commit is contained in:
parent
6c90072724
commit
c481e209c9
1 changed files with 4 additions and 4 deletions
|
@ -42,10 +42,10 @@ export const EditorShell = (props: EditorShellProps) => {
|
||||||
props.onGuildChange?.(guild);
|
props.onGuildChange?.(guild);
|
||||||
};
|
};
|
||||||
|
|
||||||
const hasChanges = React.useMemo(() => !deepEqual(guild.data, props.guild.data), [
|
const hasChanges = React.useMemo(
|
||||||
guild.data,
|
() => !deepEqual(guild.data, props.guild.data),
|
||||||
props.guild.data,
|
[guild.data, props.guild.data]
|
||||||
]);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
|
Loading…
Add table
Reference in a new issue