We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee6d88d commit e6ebb73Copy full SHA for e6ebb73
src/providers/Session.tsx
@@ -151,10 +151,9 @@ export default function SessionProvider({ children }: Props): React.ReactElement
151
}
152
useEffect(() => {
153
if (!lastDbMessage) return
154
- const { editor: msgEditor, state, reason } = lastDbMessage
+ const { state, reason } = lastDbMessage
155
156
// initiated by system
157
- if (state === 'dirty') snack.warning(`${t('User {{editor}} started editing.', { editor: msgEditor })}`)
158
if (state === 'clean') {
159
if (reason === 'conflict') {
160
snack.info(
0 commit comments