Skip to content

Commit

Permalink
Merge pull request #21 from Whiterzi/main
Browse files Browse the repository at this point in the history
adjust provider name in manifest, remove unused code
  • Loading branch information
jimmyshiau authored Jul 15, 2024
2 parents 3d13a7c + 965805e commit f4f96b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion manifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0" xmlns:mailappor="http://schemas.microsoft.com/office/mailappversionoverrides/1.0" xsi:type="MailApp">
<Id>5e85270f-dbfc-45fc-b7ca-8618e10e1d8a</Id>
<Version>1.0.0.0</Version>
<ProviderName>Quire</ProviderName><!-- ? Add-in provider name -->
<ProviderName>Potix Corporation</ProviderName><!-- ? Add-in provider name -->
<DefaultLocale>en-US</DefaultLocale>
<DisplayName DefaultValue="Quire"/><!-- ? Add-in name -->
<Description DefaultValue="Never miss a deadline by turning your Outlook emails into actionable tasks in Quire."/><!-- ? Add-in description -->
Expand Down
4 changes: 1 addition & 3 deletions src/taskpane/index.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import * as React from "react";
import { createRoot } from "react-dom/client";
import App from "./components/App";
import { FluentProvider, webLightTheme } from "@fluentui/react-components";
import { FluentProvider } from "@fluentui/react-components";
import { quireLightTheme } from "./theme";

/* global document, Office, module, require */

const title = "Contoso Task Pane Add-in";

const rootElement: HTMLElement | null = document.getElementById("container");
const root = rootElement ? createRoot(rootElement) : undefined;

Expand Down

0 comments on commit f4f96b7

Please sign in to comment.