diff --git a/src-docs/src/views/tables/in_memory/in_memory.js b/src-docs/src/views/tables/in_memory/in_memory.js
index 7c797d0d4c..92fb5031d1 100644
--- a/src-docs/src/views/tables/in_memory/in_memory.js
+++ b/src-docs/src/views/tables/in_memory/in_memory.js
@@ -12,11 +12,7 @@
import React from 'react';
import { formatDate } from '../../../../../src/services/format';
import { createDataStore } from '../data_store';
-import {
- OuiInMemoryTable,
- OuiLink,
- OuiHealth,
-} from '../../../../../src/components';
+import { OuiInMemoryTable, OuiHealth } from '../../../../../src/components';
/*
Example user object:
@@ -25,7 +21,6 @@ Example user object:
id: '1',
firstName: 'john',
lastName: 'doe',
- github: 'johndoe',
dateOfBirth: Date.now(),
nationality: 'NL',
online: true
@@ -55,15 +50,6 @@ export const Table = () => {
name: 'Last Name',
truncateText: true,
},
- {
- field: 'github',
- name: 'Github',
- render: (username) => (
-
- {username}
-
- ),
- },
{
field: 'dateOfBirth',
name: 'Date of Birth',
diff --git a/src-docs/src/views/tables/in_memory/in_memory_controlled_pagination.js b/src-docs/src/views/tables/in_memory/in_memory_controlled_pagination.js
index e537af36cc..bd009f9175 100644
--- a/src-docs/src/views/tables/in_memory/in_memory_controlled_pagination.js
+++ b/src-docs/src/views/tables/in_memory/in_memory_controlled_pagination.js
@@ -12,11 +12,7 @@
import React, { useEffect, useState } from 'react';
import { formatDate } from '../../../../../src/services/format';
import { createDataStore } from '../data_store';
-import {
- OuiInMemoryTable,
- OuiLink,
- OuiHealth,
-} from '../../../../../src/components';
+import { OuiInMemoryTable, OuiHealth } from '../../../../../src/components';
/*
Example user object:
@@ -25,7 +21,6 @@ Example user object:
id: '1',
firstName: 'john',
lastName: 'doe',
- github: 'johndoe',
dateOfBirth: Date.now(),
nationality: 'NL',
online: true
@@ -55,15 +50,6 @@ export const Table = () => {
name: 'Last Name',
truncateText: true,
},
- {
- field: 'github',
- name: 'Github',
- render: (username) => (
-
- {username}
-
- ),
- },
{
field: 'dateOfBirth',
name: 'Date of Birth',
diff --git a/src-docs/src/views/tables/in_memory/in_memory_search.js b/src-docs/src/views/tables/in_memory/in_memory_search.js
index 62f054b798..d45e0668e4 100644
--- a/src-docs/src/views/tables/in_memory/in_memory_search.js
+++ b/src-docs/src/views/tables/in_memory/in_memory_search.js
@@ -14,7 +14,6 @@ import { formatDate } from '../../../../../src/services/format';
import { createDataStore } from '../data_store';
import {
OuiInMemoryTable,
- OuiLink,
OuiHealth,
OuiSpacer,
OuiSwitch,
@@ -31,7 +30,6 @@ Example user object:
id: '1',
firstName: 'john',
lastName: 'doe',
- github: 'johndoe',
dateOfBirth: Date.now(),
nationality: 'NL',
online: true
@@ -65,15 +63,6 @@ export const Table = () => {
name: 'Last Name',
truncateText: true,
},
- {
- field: 'github',
- name: 'Github',
- render: (username) => (
-
- {username}
-
- ),
- },
{
field: 'dateOfBirth',
name: 'Date of Birth',
diff --git a/src-docs/src/views/tables/in_memory/in_memory_search_callback.js b/src-docs/src/views/tables/in_memory/in_memory_search_callback.js
index 34593ce768..72f999e2c9 100644
--- a/src-docs/src/views/tables/in_memory/in_memory_search_callback.js
+++ b/src-docs/src/views/tables/in_memory/in_memory_search_callback.js
@@ -12,11 +12,7 @@
import React, { useState } from 'react';
import { formatDate } from '../../../../../src/services/format';
import { createDataStore } from '../data_store';
-import {
- OuiInMemoryTable,
- OuiLink,
- OuiHealth,
-} from '../../../../../src/components';
+import { OuiInMemoryTable, OuiHealth } from '../../../../../src/components';
/*
Example user object:
@@ -25,7 +21,6 @@ Example user object:
id: '1',
firstName: 'john',
lastName: 'doe',
- github: 'johndoe',
dateOfBirth: Date.now(),
nationality: 'NL',
online: true
@@ -91,15 +86,6 @@ export const Table = () => {
name: 'Last Name',
truncateText: true,
},
- {
- field: 'github',
- name: 'Github',
- render: (username) => (
-
- {username}
-
- ),
- },
{
field: 'dateOfBirth',
name: 'Date of Birth',
diff --git a/src-docs/src/views/tables/in_memory/in_memory_search_external.js b/src-docs/src/views/tables/in_memory/in_memory_search_external.js
index bd393f2935..034066ce04 100644
--- a/src-docs/src/views/tables/in_memory/in_memory_search_external.js
+++ b/src-docs/src/views/tables/in_memory/in_memory_search_external.js
@@ -14,7 +14,6 @@ import { formatDate } from '../../../../../src/services/format';
import { createDataStore } from '../data_store';
import {
OuiInMemoryTable,
- OuiLink,
OuiHealth,
OuiFlexGroup,
OuiFlexItem,
@@ -29,7 +28,6 @@ Example user object:
id: '1',
firstName: 'john',
lastName: 'doe',
- github: 'johndoe',
dateOfBirth: Date.now(),
nationality: 'NL',
online: true
@@ -62,15 +60,6 @@ export const Table = () => {
name: 'Last Name',
truncateText: true,
},
- {
- field: 'github',
- name: 'Github',
- render: (username) => (
-
- {username}
-
- ),
- },
{
field: 'dateOfBirth',
name: 'Date of Birth',
diff --git a/src-docs/src/views/tables/in_memory/in_memory_selection.js b/src-docs/src/views/tables/in_memory/in_memory_selection.js
index 1dfa5b4b69..7b5b27de7d 100644
--- a/src-docs/src/views/tables/in_memory/in_memory_selection.js
+++ b/src-docs/src/views/tables/in_memory/in_memory_selection.js
@@ -13,7 +13,6 @@ import React, { useState, Fragment, useRef } from 'react';
import { formatDate } from '../../../../../src/services/format';
import { createDataStore } from '../data_store';
import {
- OuiLink,
OuiHealth,
OuiButton,
OuiInMemoryTable,
@@ -31,7 +30,6 @@ Example user object:
id: '1',
firstName: 'john',
lastName: 'doe',
- github: 'johndoe',
dateOfBirth: Date.now(),
nationality: 'NL',
online: true
@@ -154,15 +152,6 @@ export const Table = () => {
name: 'Last Name',
truncateText: true,
},
- {
- field: 'github',
- name: 'Github',
- render: (username) => (
-
- {username}
-
- ),
- },
{
field: 'dateOfBirth',
name: 'Date of Birth',