Add semicolon to imports and remove comment.
This commit is contained in:
parent
447561179b
commit
341fc3f7a7
@ -1,6 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Breadcrumbs from '../../../UI/Breadcrumbs'
|
import Breadcrumbs from '../../../UI/Breadcrumbs';
|
||||||
import MarkdownPage from '../../markdownPage'
|
import MarkdownPage from '../../markdownPage';
|
||||||
|
|
||||||
const Fieldday = ({ mdPath }) => {
|
const Fieldday = ({ mdPath }) => {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@ -3,7 +3,7 @@ import { Link } from 'react-router-dom';
|
|||||||
import fielddaysData from './fielddays.json';
|
import fielddaysData from './fielddays.json';
|
||||||
import { useTheme } from '../../../ThemeContext';
|
import { useTheme } from '../../../ThemeContext';
|
||||||
import { getLanguage } from '../../../Language/Language';
|
import { getLanguage } from '../../../Language/Language';
|
||||||
import { getString } from '../../../Language/LanguageStrings'
|
import { getString } from '../../../Language/LanguageStrings';
|
||||||
|
|
||||||
const FielddaysTable = () => {
|
const FielddaysTable = () => {
|
||||||
const { theme } = useTheme();
|
const { theme } = useTheme();
|
||||||
@ -26,8 +26,6 @@ const FielddaysTable = () => {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Optimize to only show link column for the current language.
|
|
||||||
// This also eliminates a column.
|
|
||||||
return (
|
return (
|
||||||
<table className={'table table-striped table-hover table-' + theme}>
|
<table className={'table table-striped table-hover table-' + theme}>
|
||||||
<thead>
|
<thead>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user