@linktr.ee/messaging-react 4.4.4-rc-1788181757 → 4.4.4-rc-1788237159

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linktr.ee/messaging-react",
3
- "version": "4.4.4-rc-1788181757",
3
+ "version": "4.4.4-rc-1788237159",
4
4
  "description": "React messaging components built on messaging-core for web applications",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -50,8 +50,8 @@
50
50
  "chromatic:local": "yarn storybook:build && chromatic"
51
51
  },
52
52
  "dependencies": {
53
- "@linktr.ee/messaging-core": "2.6.0-rc-1788181757",
54
- "@linktr.ee/messaging-taxonomy": "0.11.0-rc-1788181757",
53
+ "@linktr.ee/messaging-core": "2.6.0-rc-1788237159",
54
+ "@linktr.ee/messaging-taxonomy": "0.11.0-rc-1788237159",
55
55
  "@phosphor-icons/react": "^2.1.10"
56
56
  },
57
57
  "devDependencies": {
@@ -22,7 +22,7 @@ const ErrorEmitter: React.FC<{ error: Error }> = ({ error }) => {
22
22
  /** Emits one line at every level so partial-sink fallback is observable. */
23
23
  const AllLevelsEmitter: React.FC = () => {
24
24
  const logger = useMessagingLogger()
25
- // eslint-disable-next-line testing-library/no-debugging-utils -- this is the messaging logger's debug level, not screen.debug()
25
+ // This is the messaging logger's debug level, not screen.debug().
26
26
  logger.debug('debug line', 1)
27
27
  logger.info('info line', 2)
28
28
  logger.warn('warn line', 3)