Skip to content

Commit

Permalink
chore: adding React import to TrailsTablePagination to fix reference …
Browse files Browse the repository at this point in the history
…error issue in #21 (#22)
  • Loading branch information
PenguinOfWar committed Apr 12, 2024
1 parent 459c724 commit 32b2b5e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion admin/src/components/Initializer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const Initializer = ({ setPlugin }) => {
};

Initializer.propTypes = {
setPlugin: PropTypes.func.isRequired,
setPlugin: PropTypes.func.isRequired
};

export default Initializer;
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
PreviousLink
} from '@strapi/design-system/v2';
import PropTypes from 'prop-types';
import { useCallback } from 'react';
import React, { useCallback } from 'react';

import getPaginationList from '../../utils/getPaginationList';

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "strapi-plugin-paper-trail",
"version": "0.6.0",
"version": "0.6.1",
"description": "Accountability and content versioning for strapi v4+",
"homepage": "https://github.com/PenguinOfWar/strapi-plugin-paper-trail#readme",
"bugs": {
Expand Down

0 comments on commit 32b2b5e

Please sign in to comment.