summaryrefslogtreecommitdiff
path: root/examples/portfolio/src
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2021-07-19 18:23:39 -0700
committerGravatar GitHub <noreply@github.com> 2021-07-19 18:23:39 -0700
commita7e66666e49e3286639439cc993869b3a87ff251 (patch)
treee7d33647bdc5099a5b23268aab11fcae3d78628b /examples/portfolio/src
parent11100d62ef02a90ea9d0615b942e8839adc0ea45 (diff)
downloadastro-a7e66666e49e3286639439cc993869b3a87ff251.tar.gz
astro-a7e66666e49e3286639439cc993869b3a87ff251.tar.zst
astro-a7e66666e49e3286639439cc993869b3a87ff251.zip
tsconfig fix (#752)
Diffstat (limited to 'examples/portfolio/src')
-rw-r--r--examples/portfolio/src/layouts/project.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/portfolio/src/layouts/project.astro b/examples/portfolio/src/layouts/project.astro
index 3ef6d1b88..8e649ee1f 100644
--- a/examples/portfolio/src/layouts/project.astro
+++ b/examples/portfolio/src/layouts/project.astro
@@ -6,7 +6,7 @@ import Nav from '../components/Nav/index.jsx';
const { content } = Astro.props;
---
-<html lang={ content.lang ?? 'en' }>
+<html lang={ content.lang || 'en' }>
<head>
<MainHead title={content.title} />
<style lang="scss">