Skip to content

Commit

Permalink
renaming dnsProviders
Browse files Browse the repository at this point in the history
  • Loading branch information
stevector committed Oct 25, 2024
1 parent 6383953 commit 5087971
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/omniSidebarNav/getOmniItems.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import CertificationItems from './submenus/certification';


import getStarted from './submenus/getStarted';
import dnsProviders from './submenus/dnsProviders';
import goLive from './submenus/goLive';
import pagesToDelete from './submenus/pagesToDelete';
import unassignedPages from './submenus/unassignedPages';
import migrateAndUpgrade from './submenus/migrateAndUpgrade';
Expand Down Expand Up @@ -31,7 +31,7 @@ const getOmniItems = () => {
getStarted(), // assigned to Chris ✅
wordpress(), // assigned to Chris ✅
drupal(), // Assigned to Steve
dnsProviders(), // todo: rename to goLive
goLive(),
migrateAndUpgrade(), // todo, move under "Get Started"
webInfrastructure(),
accountManagement(),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { getGuideDirectory, simpleLink } from './../helpers';

// @todo, rename this function and file to something like "goingLive" or "golive"
const dnsProviders = () => {
const goLive = () => {

return {
link: '/go-live',
Expand All @@ -27,4 +27,5 @@ const dnsProviders = () => {
}
};

export default dnsProviders;

export default goLive;

0 comments on commit 5087971

Please sign in to comment.