Skip to content

Commit

Permalink
fix: rename DecapCmsWidget
Browse files Browse the repository at this point in the history
  • Loading branch information
martinjagodic committed Oct 18, 2023
1 parent 11fe0a3 commit 798921d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/decap-cms-widget-string/src/__tests__/string.spec.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from 'react';
import { render, fireEvent } from '@testing-library/react';

import { NetlifyCmsWidgetString } from '../';
import { DecapCmsWidgetString } from '../';

const StringControl = NetlifyCmsWidgetString.controlComponent;
const StringControl = DecapCmsWidgetString.controlComponent;

function setup({ defaultValue } = {}) {
const setActiveSpy = jest.fn();
Expand Down
4 changes: 2 additions & 2 deletions packages/decap-cms-widget-text/src/__tests__/text.spec.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from 'react';
import { render, fireEvent } from '@testing-library/react';

import { NetlifyCmsWidgetText } from '../';
import { DecapCmsWidgetText } from '../';

const TextControl = NetlifyCmsWidgetText.controlComponent;
const TextControl = DecapCmsWidgetText.controlComponent;

function setup({ defaultValue } = {}) {
const setActiveSpy = jest.fn();
Expand Down

0 comments on commit 798921d

Please sign in to comment.