Skip to content

Commit

Permalink
[app:contexts] Rename dir app/context/ to app/contexts
Browse files Browse the repository at this point in the history
[app:App] Update reference `app/context` -> `app/contexts`
[app:Head] Update reference `app/context` -> `app/contexts`
[app:HTMLBody] Update reference `app/context` -> `app/contexts`
  • Loading branch information
chichiwang committed Jun 28, 2024
1 parent f81a494 commit 6964b96
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/App/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { Manifest } from 'app/types';

import ManifestContext from 'app/context/ManifestContext';
import ManifestContext from 'app/contexts/ManifestContext';

import 'app/global.module.scss';

Expand Down
2 changes: 1 addition & 1 deletion app/HTMLBody/__tests__/index.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import renderer from 'react-test-renderer';

import ManifestContext from 'app/context/ManifestContext';
import ManifestContext from 'app/contexts/ManifestContext';

import HTMLBody from '../index';

Expand Down
2 changes: 1 addition & 1 deletion app/Head/__tests__/index.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import renderer from 'react-test-renderer';

import ManifestContext from 'app/context/ManifestContext';
import ManifestContext from 'app/contexts/ManifestContext';
import useRouteHead from 'app/hooks/useRouteHead';

import Head from '../index';
Expand Down
2 changes: 1 addition & 1 deletion app/Head/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* global PROJECT_URL */
import React, { useContext } from 'react';

import ManifestContext from 'app/context/ManifestContext';
import ManifestContext from 'app/contexts/ManifestContext';
import useRouteHead from 'app/hooks/useRouteHead';
import type { Manifest } from 'app/types';

Expand Down
File renamed without changes.

0 comments on commit 6964b96

Please sign in to comment.