Skip to content

Commit

Permalink
fix: default app details value (#210)
Browse files Browse the repository at this point in the history
* fix: default app details value

* test: update app details test
  • Loading branch information
phoebus-84 authored Feb 19, 2025
1 parent 7b191ca commit 0286bb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/app-details/d-app-details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Component, Host, Prop, h } from '@stencil/core';
})
export class DAppDetails {
@Prop() version: string;
@Prop() developedBy: string = 'Develepoded by Forkbomb BV';
@Prop() developedBy: string = 'Developed by Forkbomb BV';

render() {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/components/app-details/test/d-app-details.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ describe('d-app-details', () => {
<mock:shadow-root>
<div class="flex flex-col gap-2 items-center p-6">
<d-text size="l">
Develepoded by Forkbomb BV
Developed by Forkbomb BV
</d-text>
<d-text size="m">
v
Expand Down

0 comments on commit 0286bb4

Please sign in to comment.